Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 jButton 从 TextArea 打印文本?我正在使用netbeans,顺便说一句。谁能帮我?这是我在学校的期中项目。
使用 textarea 的 getText() 方法获取文本。使用 System.out.println() 在控制台中打印它,或者如果不是控制台,请按照您的方法。在 JButton 的事件处理程序中执行这些操作。
public void actionPerformed(ActionEvent aew) { JTextArea text = new JTextArea(); String result = text.getText(); }