JAVA中box在Frame中显示不完_JTable未显示在JFrame(Java)上

我知道这不是问题所在,因为其他一切都很好

真的吗?不在我的电脑里...

让我们在PC上显示您的实际GUI的图片:

4dbb1042ab8abcf10d8d31b98fea7025.png

GUI在您的计算机上看起来是否相同?我敢打赌

但是...为什么在我的PC上看起来像这样?

好吧,正如上面@MadProgrammer的评论中所述,这是因为该setLayout(null);行。您可能想阅读Null布局是邪恶的,为什么在Java Swing中使用Null布局却不受欢迎?欲获得更多信息。

话虽如此,您还应该阅读并学习如何使用各种布局管理器,这些管理器将使您可以创建复杂的GUI。

在您的代码中,您永远不会为设置位置/边界scrollPane及其大小,因此该组件的默认大小为0、0。

但是...我认为最好向您展示如何获得一个真正相似的GUI(我很着急,所以我没有制作更相似的GUI)。您可以复制粘贴我的代码,并看到相同的输出(可能由于操作系统而略有差异),但是文本不会被裁剪。

a1a2320624f8cdf5cf7979515c065997.png

产生以上图像的代码就是这个:

import java.awt.BorderLayout;

import java.awt.Dimension;

import java.awt.FlowLayout;

import java.awt.GridBagConstraints;

import java.awt.GridLayout;

import javax.swing.BoxLayout;

import javax.swing.JButton;

import javax.swing.JCheckBox;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JPanel;

import javax.swing.JPasswordField;

import javax.swing.JScrollPane;

import javax.swing.JTable;

import javax.swing.JTextField;

import javax.swing.SwingUtilities;

public class AccountCreator {

private JFrame frame;

private JPanel mainPane;

private JPanel topPane;

private JPanel tablePane;

private JPanel bottomPane;

private JLabel selectAccountLabel;

private JLabel userNameLabel;

private JLabel passwordLabel;

private JLabel homeWorldLabel;

private JTextField userNameField;

private JTextField homeWorldField;

private JPasswordField passwordField;

private JCheckBox membersBox;

private JCheckBox randomBox;

private JButton selectAccountButton;

private JButton addButton;

private JButton deleteButton;

private JTable table;

private JScrollPane scroll;

public static void main(String[] args) {

SwingUtilities.invokeLater(new Runnable() {

@Override

public void run() {

new AccountCreator().createAndShowGui();

}

});

}

public void createAndShowGui() {

frame = new JFrame(getClass().getSimpleName());

int rows = 30;

int cols = 3;

String[][] data = new String[rows][cols];

for (int i = 0; i < rows; i++) {

for (int j = 0; j < cols; j++) {

data[i][j] = i + "-" + j;

}

}

String[] columnNames = { "Column1", "Column2", "Column3" };

table = new JTable(data, columnNames);

scroll = new JScrollPane(table, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);

table.setPreferredScrollableViewportSize(new Dimension(420, 250));

table.setFillsViewportHeight(true);

selectAccountLabel = new JLabel("Select Account");

userNameLabel = new JLabel("Username: ");

passwordLabel = new JLabel("Password: ");

homeWorldLabel = new JLabel("Home world");

selectAccountButton = new JButton("Select Account");

addButton = new JButton("Add");

deleteButton = new JButton("Del");

userNameField = new JTextField(10);

passwordField = new JPasswordField(10);

homeWorldField = new JTextField(3);

membersBox = new JCheckBox("Members");

randomBox = new JCheckBox("Random world");

topPane = new JPanel();

topPane.setLayout(new BorderLayout());

topPane.add(selectAccountLabel, BorderLayout.WEST);

topPane.add(selectAccountButton, BorderLayout.EAST);

tablePane = new JPanel();

tablePane.add(scroll);

bottomPane = new JPanel();

bottomPane.setLayout(new GridLayout(0, 5, 3, 3));

bottomPane.add(userNameLabel);

bottomPane.add(userNameField);

bottomPane.add(membersBox);

bottomPane.add(addButton);

bottomPane.add(deleteButton);

bottomPane.add(passwordLabel);

bottomPane.add(passwordField);

bottomPane.add(randomBox);

bottomPane.add(homeWorldLabel);

bottomPane.add(homeWorldField);

mainPane = new JPanel();

mainPane.setLayout(new BoxLayout(mainPane, BoxLayout.PAGE_AXIS));

frame.add(topPane, BorderLayout.NORTH);

frame.add(tablePane, BorderLayout.CENTER);

frame.add(bottomPane, BorderLayout.SOUTH);

frame.pack();

frame.setVisible(true);

frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

}

另外,您可能已经注意到该main()方法是不同的,嗯,其中的代码将程序放置在Event Dispatch Thread(EDT)上。

因此,请确保将其包含在将来的程序中

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值