CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 1999
    Posts
    47

    OutOfMemory, Interesting

    Hi friends,

    I'm working on JDK1.2 and winNT platform(64MB , 333Mhz,PII) .
    I'm trying to load 1GB records in to JTable from 1GB txt file.
    After loading 1MB of records i'm getting "Out of Memory" Exception.

    How to load efficiently 1GB of records in to my table.????

    Are there any efficient methodology to load large data.????

    My product should handle 1GB of Data....Is there any properway to handle large data?????

    Thanx
    chandra


  2. #2
    Join Date
    Sep 1999
    Location
    UK
    Posts
    23

    Re: OutOfMemory, Interesting

    Hello,

    What ur trying to do is load 1GB data into the memory. Instead of that if u can load only partial data. Maybe only the data that would be visible or used at a time or In Blocks of some records say 100 records at a time. Im not that familiar to JTable but check out if JTable supports a smilar kind

    Cheers
    Vikram


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured