从 .txt 逐行读取填充 JList

发布于 2024-10-19 21:52:01 字数 843 浏览 5 评论 0原文

我想从 .txt 填充 JList 我无法填充 JList... 代码如下:

.txt 的格式如下示例:

name1
name2
name3

JList 的声明方式如下:

private javax.swing.JList jList1

这是用于逐行读取的方法:

 private void visualizzaRosa(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
    fileSquadra = squadra.getText();
    try {
    FileInputStream fstream = new FileInputStream("C:/Users/Franky/Documents....");
    DataInputStream in = new DataInputStream(fstream);
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    String strLine;
    while ((strLine = br.readLine()) != null)   {
        Jlist1.add(strline); //to populate jlist
        System.out.println(strLine); //to print on consolle
}
in.close();
    } catch (Exception e) {
    }
}

谢谢

I want to populate a JList from a .txt
I can't populate the JList...
Here's the code:

The .txt is formatted like this sample:

name1
name2
name3

The JList is declared in this way:

private javax.swing.JList jList1

This is the method used to read line by line:

 private void visualizzaRosa(java.awt.event.ActionEvent evt) {
    // TODO add your handling code here:
    fileSquadra = squadra.getText();
    try {
    FileInputStream fstream = new FileInputStream("C:/Users/Franky/Documents....");
    DataInputStream in = new DataInputStream(fstream);
    BufferedReader br = new BufferedReader(new InputStreamReader(in));
    String strLine;
    while ((strLine = br.readLine()) != null)   {
        Jlist1.add(strline); //to populate jlist
        System.out.println(strLine); //to print on consolle
}
in.close();
    } catch (Exception e) {
    }
}

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鼻尖触碰 2024-10-26 21:52:01

尝试

DefaultListModel listModel = new DefaultListModel();
while ((strLine = br.readLine()) != null)   
{
        listModel.addElement(strline); 
        System.out.println(strLine); 
}

jList1.setModel(listModel);

Try

DefaultListModel listModel = new DefaultListModel();
while ((strLine = br.readLine()) != null)   
{
        listModel.addElement(strline); 
        System.out.println(strLine); 
}

jList1.setModel(listModel);
猫弦 2024-10-26 21:52:01

如果我想填充 Jtextarea 而不是 jlist ???

然后使用 API 中的 read() 方法。无需编写自定义代码:

textArea.read(...);

and if i want to populate a Jtextarea instead of the jlist ????

Then use the read() method that is part of the API. THere is no need to write custom code:

textArea.read(...);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文