java Gui中如何获取TextArea的值
1个回答
展开全部
可以使用 JTextArea 的 getText() 方法获取文件内容,如下:
import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
import javax.swing.JToolBar;
public class App extends JFrame {
private JTextArea textArea;
public App() {
this.setSize(400, 400);
this.setLocationRelativeTo(null);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JToolBar toolBar = new JToolBar();
this.add(toolBar, BorderLayout.NORTH);
JButton btnTest = new JButton("获取TextArea文本");
btnTest.addActionListener(e -> {
String text = textArea.getText();
JOptionPane.showMessageDialog(this, text);
});
toolBar.add(btnTest);
textArea = new JTextArea();
this.add(textArea, BorderLayout.CENTER);
}
public static void main(String[] args) {
new App().setVisible(true);
}
}
运行结果;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询