如何向 JTextArea 添加文本

How to Add text to JTextArea

我正在使用 java 创建程序。我希望用户输入一些文本,然后按下按钮,以便输入的文本显示在标签中。但是,我有两个问题。首先,当我执行应用程序时,文本没有显示。其次,我不知道如何让用户在该区域输入。我是 java 的新人,所以这就是我问的原因。这是代码。谢谢。

import javax.swing.*;
import java.awt.event.*;



class Boton extends JFrame implements ActionListener {
    JButton boton;
    JTextArea textArea = new JTextArea();
    JLabel etiqueta = new JLabel();


    public Boton() {
        setLayout(null);
        boton = new JButton("Escribir");
        boton.setBounds(100, 150, 100, 30);
        boton.addActionListener(this);
        add(boton);
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == boton) {
            try {
                String texto = textArea.getText();
                etiqueta.setText(texto);
                Thread.sleep(3000);
                System.exit(0);
            } catch (Exception excep) {
                System.exit(0);
            }
        }
    }
}

public class Main{
    public static void main(String[] ar) {
        Boton boton1 =new Boton();
        boton1.setBounds(0,0,450,350);
        boton1.setVisible(true);
        boton1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}
textarea.setText("Text");  // this will insert text into the text area
textarea.setVisable(true); // this will display the text area so you can type in it
textarea.setSize(500,500); // set size of the textarea so it actually shows

用户应该能够在 TA 显示时输入它,然后只需执行 getText 来拉取文本

问题:

  1. 永远不要将 JTextArea 添加到 GUI 中,如果它不显示,用户就无法直接与其交互。
  2. 您正在 Swing 事件线程上调用 Thread.sleep,这将使整个应用程序进入休眠状态,这意味着您添加的文本将不会显示。
  3. 其他问题包括使用空布局和 setBounds -- 避免这样做。

解决方案:

  1. 设置 JTextArea 的列和行属性,使其大小合适。
  2. 由于您的 JTextArea 的文本将进入 JLabel,一个只允许单行文本的组件,我想知道您是否应该使用 JTextArea。也许 JTextField 会更好,因为它允许用户输入但只允许输入一行文本。
  3. 将 JTextArea 添加到 JScrollPane(实际上是它的视口)并将其添加到您的 GUI。然后用户可以直接与之交互。通过将 JTextArea 传递到 JScrollPane 的构造函数中,最容易做到这一点。
  4. 摆脱 Thread.sleep,如果您想使用延迟,请使用 Swing Timer。查看教程 here

例如:

import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.Window;
import java.awt.event.KeyEvent; 
import javax.swing.*;

public class Main2 {
    public static void main(String[] args) {
        // create GUI in a thread-safe manner
        SwingUtilities.invokeLater(() -> createAndShowGui());
    }

    private static void createAndShowGui() {
        BotonExample mainPanel = new BotonExample();
        JFrame frame = new JFrame("GUI");
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.add(mainPanel);
        frame.pack();
        frame.setLocationByPlatform(true);
        frame.setVisible(true);
    }
}

class BotonExample extends JPanel {
    private JLabel etiqueta = new JLabel(" ");
    private JButton boton = new JButton("Escribir");
    
    // jtext area rows and column properties
    private int rows = 5;
    private int columns = 30;
    private JTextArea textArea = new JTextArea(rows, columns);
    
    public BotonExample() {
        // alt-e will activate button
        boton.setMnemonic(KeyEvent.VK_E);
        boton.addActionListener(e -> {
            boton.setEnabled(false); // prevent button from re-activating
            String text = textArea.getText();
            etiqueta.setText(text);
            
            // delay for timer
            int delay = 3000;
            Timer timer = new Timer(delay, e2 -> {
                // get current window and dispose ofit
                Window window = SwingUtilities.getWindowAncestor(boton);
                window.dispose();
            });
            timer.setRepeats(false);
            timer.start();  // start timer
        });
        
        // create JPanels to add to GUI
        JPanel topPanel = new JPanel(new FlowLayout(FlowLayout.LEADING, 5, 5));
        topPanel.add(new JLabel("Etiqueta:"));
        topPanel.add(etiqueta);
        JPanel bottomPanel = new JPanel();
        bottomPanel.add(boton);
        
        JScrollPane scrollPane = new JScrollPane(textArea);
        
        // use layout manager and add components
        setLayout(new BorderLayout());
        add(topPanel, BorderLayout.PAGE_START);
        add(scrollPane, BorderLayout.CENTER);
        add(bottomPanel, BorderLayout.PAGE_END);
        
    }
}