Search:

Type: Posts; User: JavaPF

Search: Search took 0.07 seconds.

  1. Re: Collections,JList - Memory requirement

    Yes this looks to me like your application can not handle so many lines of text and has indeed died b-(

    When the application loads, why don't you only load part of the data into the list box. As...
  2. Re: Collections,JList - Memory requirement

    Hey jacinto,

    No idea if this will work without dying but you could use this to write a million lines to a file lol



    import java.io.*;

    public class MillionLines {
  3. Re: Collections,JList - Memory requirement

    Hello jacinto,

    I am unsure what to suggest here. The real test will be to see if your current application can handle a file of this size then take it from there..
  4. Re: Collections,JList - Memory requirement

    Hello jacinto and welcome to the Java Programming Forums :)

    If you have a million entries loading into the listbox, you will run out of memory really, really fast. Do you expect your program to...
Results 1 to 4 of 4