Hi:My code is to parse a large text format data file, create data object foreach record and save the object data in file. Within the loop of parsing( read in a line a time ), I create a new object, fill it with data and thenoutput to file.Since the data file is huge, after created 10711 objects, the program runout of memory. I assume the Garbage Collector can release the memory resource,but it seems not in time.anybody can tell me how to mnanager the memory usage in such a [email protected]