Re: Read Huge File using Java - thanks

1998-12-19 Thread Christopher Hinds
The finalize() method of any object is called by the JVM during a GC cycle. This gives the developer the chance to do any clean up before the object is removed from object heap. A good example of cleanup might be closing JDBC connection to a database or cleanly closing socket connection, Cheers C

Read Huge File using Java - thanks

1998-12-18 Thread Quanyu Zhu
Hi,there: Thanks for the comments on reading huge file using java . Following some of your comments, right now I got a solution, which tested for one 150M file just using 1 minutes and then draw the image. That sounds a good result I can get. Actually, I just used the bufferIO, and