我已經讓GUI在我的電腦上運行過,但是這個程序我想嘗試實現GridBag,所以我可以做一個簡單的遊戲。我不知道爲什麼它沒有運行。這是代碼:圖形用戶界面沒有顯示在我的屏幕上
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
public class GridBagTest extends JFrame{
public static void main(String[] args){
new GridBagTest();
}
public void GridBagTest(){
JButton atk, mag, fort, pot1, pot2, flee;
JPanel gamePanel = new JPanel();
gamePanel.setLayout(new GridBagLayout());
JFrame gameFrame = new JFrame("FightQuest");
gameFrame.getContentPane().add(gamePanel);
gameFrame.setSize(800, 600);
gameFrame.pack();
gameFrame.setVisible(true);
atk = new JButton("Strike");
mag = new JButton("Magic");
fort = new JButton("Fortify");
pot1 = new JButton("Potion 1");
pot2 = new JButton("Potion 2");
flee = new JButton("Flee");
addItem(gamePanel, atk, 0, 0, 1, 1, GridBagConstraints.SOUTHEAST);
addItem(gamePanel, mag, 1, 0, 1, 1, GridBagConstraints.SOUTH);
addItem(gamePanel, fort, 2, 0, 1, 1, GridBagConstraints.SOUTHWEST);
addItem(gamePanel, pot1, 0, 1, 1, 1, GridBagConstraints.NORTHEAST);
addItem(gamePanel, pot2, 1, 1, 1, 1, GridBagConstraints.NORTH);
addItem(gamePanel, flee, 2, 1, 1, 1, GridBagConstraints.NORTHWEST);
}
private void addItem(JPanel p, JComponent c, int x, int y, int width, int height, int align){
GridBagConstraints gc = new GridBagConstraints();
gc.gridx = x;
gc.gridy = y;
gc.gridwidth = width;
gc.gridheight = height;
gc.weightx = 100.0;
gc.weighty = 100.0;
gc.insets = new Insets(0, 0, 0, 0);
gc.anchor = align;
gc.fill = GridBagConstraints.NONE;
p.add(c, gc);
}
}
我不知道這有什麼差別,但我得到了大多數代碼從Java參考書的Java 6即使我正在運行的Java 7,因爲這是所有我的學校了。我也在XFCE操作系統上執行我所有的代碼。
1)爲了更好地幫助更快,發佈[SSCCE](http://sscce.org/)。 2)請參閱[使用多個JFrames,好/壞實踐?](http://stackoverflow.com/a/9554657/418556) –
我不知道如何使這個更短,從代碼中刪除的東西doesn'使GUI出現。我需要其他人告訴我如何縮短或延長代碼。 – JavaNoob
非常恭喜,你完全掌握了四個製作SSCCE的東西中的一個。現在看看***另一個3. *** –