我正在尝试为我正在编写的Java应用程序创建一个简单的swing GUI,但是我在让JPanel上显示的内容时遇到了一些麻烦,我想知道是否有人可以指出我做错了什么?
我的Gui.java类中有以下代码:
package openDIS;
import javax.swing.*;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class Gui extends JFrame{
public Gui(){
setTitle("DIS Filter");
setSize(1000, 500);
setLocation (10, 10);
setDefaultCloseOperation(EXIT_ON_CLOSE);
initGui();
}
/*public quitButton(){
initGui();
} */
private void initGui(){
//JFrame frame = new JFrame();
JPanel panel = new JPanel();
this.getContentPane().add(panel);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("DIS Filter");
this.setSize(1000, 500);
panel.setLayout(null);
/*Add a JTextArea to display the output DIS information */
JTextArea displayOutput = new JTextArea();
panel.add(displayOutput);
//String data = EspduReceiver.espdu;
int n = EspduReceiver.entitySite.size();
for (int i = 0; i < n; i++){
EspduReceiver.receivePdu();
System.out.println(EspduReceiver.entitySite.get(i));
System.out.println(EspduReceiver.entityApplication.get(i));
System.out.println(EspduReceiver.entity.get(i));
displayOutput.append(EspduReceiver.entitySite.get(i).toString());
displayOutput.append(EspduReceiver.entityApplication.get(i).toString());
displayOutput.append(EspduReceiver.entity.get(i).toString());
}
JButton quitButton = new JButton("Quit");
panel.add(quitButton);
quitButton.setBounds(875, 400, 80, 30); /*Set the location of the button in the window, and its size */
quitButton.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e){
System.exit(0);
}
});
panel.add(quitButton);
//setTitle("Quit");
//setSize(60,30); /*This line was overwriting the previously set values for the size of the window */
setLocationRelativeTo(null);
panel.repaint();
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
public static void main(String[] args){ /* I probably don't need a main method here- I have one in EspduReceiver.java */
SwingUtilities.invokeLater(new Runnable(){
@Override
public void run(){
Gui gui = new Gui();
gui.setVisible(true);
}
});
}
}
目前,当我运行课程时,会打开一个标题为&#34; DIS Filter&#34;的窗口,并且有一个&#39; Quit&#39;右下角的按钮 - 退出按钮功能正常。
然而,无论我尝试什么,我似乎都无法展示JTextArea ......任何人都可以指出我在这里做错了吗?
谢谢!
答案 0 :(得分:4)
您仍然需要布局,使用FlowLayout作为最简单的布局。您还必须设置JTextArea大小。
panel.setLayout(new FlowLayout());
/* Add a JTextArea to display the output DIS information */
JTextArea displayOutput = new JTextArea(50, 50);
panel.add(displayOutput);
答案 1 :(得分:3)
请勿使用null
layout;给文本区域一个首选大小,并pack()
包围Window
。
JTextArea displayOutput = new JTextArea(3, 16);
答案 2 :(得分:0)
试试这个:
displayOutput.setRows(20);
displayOutput.setColumns(5);
displayOutput.setVisible(true);