gpt4 book ai didi

java - 单击按钮时打开 JTextArea

转载 作者:行者123 更新时间:2023-12-01 16:32:29 25 4
gpt4 key购买 nike

我正在编写一个包含许多按钮的程序,当我单击其中一个按钮时,我希望它打开一个 JTextArea,其中包含一些 txt 文件信息。我尝试将 JTextArea 添加到按钮,但它没有打开任何内容。我是 Java 新手,所以我不知道这是否是正确的方法。

我在 GUI 中定义了按钮和 JTextArea

showListButton.add(jTextArea);

这是我在 public void actionPerformed(ActionEvent e) 内部编写的代码

if(e.getSource() == showListButton){



try {
BufferedReader in = new BufferedReader(new FileReader("file.txt"));
String word;
while((word= in.readLine()) != null)
{
jTextArea.read( in, null );
jTextTextArea.requestFocus();

}
in.close();
}catch(IOException e1){
e1.printStackTrace();
}

}

最佳答案

要显示某些内容,您需要一个根容器,例如 WindowJframe。到显示您已将其添加到将在单击时显示的另一个框架中的文本区域,或者将其添加到已显示的面板中。

关于java - 单击按钮时打开 JTextArea,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62018124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com