How can I copy lines from a text file into a JComboBox?

That's because you read only the first line and close the file, consider.

That's because you read only the first line and close the file, consider: try { in = new BufferedReader(new FileReader("D:/File. Txt")); while((read = in.readLine())! = null){ linesw=read; ++w; } in.close(); }catch(IOException e){ System.out.

Println("There was a problem:" + e); } Note: I assume the array lines is big enough.

You're only reading the first line of the file. So there can't be more in the JCombobox. You should use a while and read all lines till you reach the end.

Replace read = in.readLine(); linesw=read; with while((read = in.readLine())! =null){ linesw++=read; }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions