gpt4 book ai didi

java - JTextPane/JTextArea append() 随机工作

转载 作者:行者123 更新时间:2023-11-30 06:12:07 25 4
gpt4 key购买 nike

我在一个非常简单的 GUI 中有一个 JTextPane,我将其用作用于学习 Java 的游戏的输出控制台,我(尝试)将其与窗口类中的附加方法一起使用,从另一个类调用它(程序本身)或来自命令读取器类。理论上它应该输出我输入的命令,并在下一行中输出来自所述程序的输出。

如果从自己的类调用 print 方法(对 JTextArea 使用append,或对 JTextPane 使用 getText() 和 setText()),则可以正常工作(当打印所使用的命令和“>”时,但是,当从在外面,它的行为是随机的,有时附加在 textArea 的最顶部,按预期工作,甚至复制其中的所有文本。

这是用于此目的的 GUI 代码。我确信它并不完美,甚至接近完美,但我刚刚开始学习 GUI 的基础知识

import java.awt.*;
import java.awt.event.*;

import javax.swing.*;
import javax.swing.border.*;
import javax.swing.text.DefaultCaret;

import graficos.VisorJugador;

public class test extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel contentPane;
private String comando = "";
private JTextArea txp_Console;
private JScrollPane jsp_ConsoleScrollPanel;
private JLabel lbl_habitacion;
private VisorJugador[] jugadores;

/**
* Create the frame.
*/
public test() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 640, 480);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);

createPanels();
}

public static void lanzar(test frame){
frame.setVisible(true);
}

private void createPanels(){
JPanel panelInferior = new JPanel();
JPanel panelCentral = new JPanel();

panelCentral.setLayout(new BorderLayout(0, 0));

crearInferior(panelInferior);
crearCentral(panelCentral);

contentPane.add(panelInferior, BorderLayout.SOUTH);
contentPane.add(panelCentral, BorderLayout.CENTER);
}

private void crearCentral(JPanel panelCentral) {
JLabel lbl_Consola = new JLabel("Consola");
txp_Console = new JTextArea();
jsp_ConsoleScrollPanel = new JScrollPane(txp_Console);

txp_Console.setEditable(true);

DefaultCaret caret = (DefaultCaret) txp_Console.getCaret();
caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);

panelCentral.add(lbl_Consola, BorderLayout.NORTH);
panelCentral.add(txp_Console, BorderLayout.CENTER);
}

private void crearInferior(JPanel panelInferior) {
JLabel lbl_QueHacer = new JLabel("Que quieres hacer?");
JButton btn_Enviar = new JButton("Hacer");
JTextField txt_consola = new JTextField();

btn_Enviar.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
comando = txt_consola.getText();
print("> " + txt_consola.getText());
txt_consola.setText("");
}
});
txt_consola.setColumns(10);

panelInferior.add(lbl_QueHacer, BorderLayout.NORTH);
panelInferior.add(txt_consola);
panelInferior.add(btn_Enviar);
}

public void print(String texto) {
String anterior = txp_Console.getText();
txp_Console.setText(anterior + texto);
}
}

每次我必须从程序中输出一些内容时,我都会调用 ventana.print(labels.getString(msg)),ventana 是在其创建的新 测试 实例构造函数。我对线程一无所知,所以我没有任何东西来处理它,所以,据我所知,一切都在主线程上运行。

此外,这是一些示例输出

No entiendo  --From commands 2 and 3
No entiendo --From commands 2 and 3
Bienvenido al Mundo de Zuul! --Working output
El Mundo de Zuul es un juego de aventuras muy aburrido, pero interesante!. --Working output
Escribe 'ayuda' si necesitas ayuda. --Working output
Estas en el exterior de la entrada principal de la universidad --Working output
Salidas: este, sur, oeste --Working output
> 1 --Works as intended
No entiendo --Output for command 1
> 2 --Output at the top
> 3 --Output at the top
> 4 --No output, windows error sound

在调试时,我看到创建了 swing/awt 的线程,但我根本不理解线程,所以我只是希望我不需要它们。我也尝试过设置鹅毛笔、移动滚动条、从命令中删除“/n”,但运气还不错。

最佳答案

您对线程的使用可能已关闭,但我们没有看到有问题的代码,因此很难判断。我要声明的一件事是,您应该始终在 Swing 事件线程上启动 GUI,并且应该努力在同一线程上对 GUI 进行更改。

您可以对 print 方法进行的一项更改是测试您是否位于 Swing 事件线程上,如果是,则将传入的文本附加到 JTextArea。如果没有,则使用 SwingUtilities 创建代码以在事件线程上对此更改进行排队,如下所示:

public void print(String texto) {
// String anterior = txp_Console.getText();
// txp_Console.setText(anterior + texto);
if (SwingUtilities.isEventDispatchThread()) {
// if on the Swing event thread, call directly
txp_Console.append(texto); // a simple append call is all that is needed
} else {
// else queue it onto the event thread
SwingUtilities.invokeLater(() -> txp_Console.append(texto));
}
}

请阅读Lesson: Concurrency in Swing了解有关 Swing 线程的更多信息。

例如,假设我有一个像这样的 GUI:

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.*;

@SuppressWarnings("serial")
public class JuanjoTestPanel extends JPanel {
private static final int TA_ROWS = 25;
private static final int TA_COLS = 60;
private JTextArea textArea = new JTextArea(TA_ROWS, TA_COLS);
private JTextField textField = new JTextField(30);
private Action hacerAction = new HacerAction();

public JuanjoTestPanel() {
textArea.setFocusable(false);
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
JScrollPane scrollPane = new JScrollPane(textArea);

textField.setAction(hacerAction);
JPanel bottomPanel = new JPanel();
bottomPanel.add(new JLabel("¿Que queres hacer?"));
bottomPanel.add(Box.createHorizontalStrut(5));
bottomPanel.add(textField);
bottomPanel.add(new JButton(hacerAction));

setLayout(new BorderLayout());
add(scrollPane);
add(bottomPanel, BorderLayout.PAGE_END);
}

public void printToWindow(final String text) {
if (SwingUtilities.isEventDispatchThread()) {
textArea.append("Console:" + text + "\n");
} else {
SwingUtilities.invokeLater(() -> textArea.append("Console:" + text + "\n"));
}
}

private class HacerAction extends AbstractAction {
public HacerAction() {
super("Hacer");
putValue(MNEMONIC_KEY, KeyEvent.VK_H);
}

@Override
public void actionPerformed(ActionEvent e) {
String text = "> " + textField.getText() + "\n";
textArea.append(text);
textField.selectAll();
textField.requestFocusInWindow();
}
}
}

您还可以通过调用其 printToWindow(...) 方法从控制台写入它,如下所示:

import java.util.Scanner;
import javax.swing.*;

public class TestSwing2 {

private static final String EXIT = "exit";

public static void main(String[] args) {
// create window
final JuanjoTestPanel testPanel = new JuanjoTestPanel();
// launch it on the Swing event thread
SwingUtilities.invokeLater(() -> createAndShowGui(testPanel));
Scanner scanner = new Scanner(System.in);
String line = "";
while (!line.trim().equalsIgnoreCase(EXIT)) {
System.out.print("Enter text: ");
line = scanner.nextLine();
System.out.println("Line entered: " + line);
testPanel.printToWindow(line); // write to it
}
scanner.close();
System.exit(0);
}

private static void createAndShowGui(JuanjoTestPanel testPanel) {
JFrame frame = new JFrame("Test Swing2");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(testPanel);
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}

关于java - JTextPane/JTextArea append() 随机工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50009032/

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