我正在尝试从 .txt 文件中读取内容,并且我想在我的 GUI 中以 JTextAreas 的数量显示它
我的文本文件的内容是 8 个随机数,用逗号分隔它们(如下所示)
200,140,300,30,30,70,70,20
我的 GUI 上有 8 个 JTextArea,我想在不同的 JTextArea 中显示每个数字。
那么如何在文本文件中使用逗号 (,) 作为分隔符呢?
以下代码完美打开文件,但仅在一个文本区域中显示所选 .txt 文件的内容。如何编辑我的代码以实现目标?
b2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
JFileChooser fc = new JFileChooser();
int returnVal = fc.showOpenDialog(fc);
if (returnVal == JFileChooser.APPROVE_OPTION)
{
File file = fc.getSelectedFile();
try
{
FileReader fr = new FileReader(file);
o = new BufferedReader(fr);
while((s=o.readLine())!=null)
t1.setText(s);
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
});