0

テキスト ファイルの各行を jcomboBox にコピーしようとしていますが、jcomboBox にはテキスト ファイルの最初の行しか表示されません...理由がわかりません。何が悪いのか説明してもらえますか?

(...)
BufferedReader in;
    String read;

        try {
            in = new BufferedReader(new FileReader("D:/File.txt"));


            read = in.readLine();

            lines[w]=read;

             ++w;

            in.close();
        }catch(IOException e){
            System.out.println("There was a problem:" + e);
        }

    combo1 = new JComboBox(lines);

    combo1.setPreferredSize(new Dimension(100,20));
    combo1.setForeground(Color.blue);


    JPanel top = new JPanel();
    top.add(label);
    top.add(combo1);

    combo1.addActionListener(new ActionFichiers());

    container.add(top, BorderLayout.NORTH);
    this.setContentPane(container);
    this.setVisible(true);            
    }
(...)
4

3 に答える 3

5

これは、最初の行だけを読み取ってファイルを閉じるためです。次のことを考慮してください。

     try {
        in = new BufferedReader(new FileReader("D:/File.txt"));
        while((read = in.readLine()) != null){
            lines[w]=read;
           ++w;
        }
        in.close();
    }catch(IOException e){
        System.out.println("There was a problem:" + e);
    }

注:配列linesは十分に大きいと思います

于 2011-08-16T23:03:34.910 に答える
4

交換

read = in.readLine();

lines[w]=read;

while((read = in.readLine())!=null){
    lines[w++]=read;
}
于 2011-08-16T23:04:23.433 に答える
4

ファイルの最初の行だけを読んでいます。したがって、JCombobox にはこれ以上のものはありません。しばらく時間をかけて、最後に到達するまですべての行を読む必要があります。

于 2011-08-16T23:03:39.467 に答える