我正在尝试将我的文本冒险放在GUI中,并使其成为没有按钮的文本和用户输入。这是我的GUI的代码
import java.awt.*;
import javax.swing.*;
public class Window {
public static void createwindow() {
JFrame frame = new JFrame("Game");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
Component textLabel = null;
frame.setLocationRelativeTo(null);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
createwindow(); }
}
我在一个单独的课程中进行了文本冒险,并且想知道是否有任何简单的方法可以在此GUI中显示它。谢谢你的帮助。
答案 0 :(得分:0)
import javax.swing。*;

 public class Window {

 public static void createwindow(){

 JFrame frame = new JFrame(“Game”);

 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 frame.setSize(600,400);
 frame.setLocationRelativeTo(NULL);
 frame.setVisible(true);

 //组件textLabel = null;
 JTextArea jta = new JTextArea();
 frame.add(jta);

 // frame.pack();

}

 public static void main(String [] args) {
 CreateWindow的(); }

}



 根据我的理解,您只需要 TextArea
。对吗?