到目前为止,我有以下代码:
public class Table extends JFrame {
JTable table;
public Table()
{
setLayout (new FlowLayout()); //Default layout
String[] columnNames = {"Fly model", "Fly kode",
"Destination", "Tidspunkt"};
Object[][] data = {
{"Boeing 737", "Ab79SO", "Oslo", "22:00"},
{"MD125", "Tb682O", "Stockholm", "15:21"},
{"Boeing 737", "HJ72SR", "Reikjavic", "08:13"},
};
table = new JTable(data, columnNames);
table.setPreferredScrollableViewportSize(new Dimension(500, 50));
table.setFillsViewportHeight(true);
setVisible(true);
JScrollPane scrollPane = new JScrollPane(table);
add(scrollPane);
}
public JTable returnJTable()
{
setVisible(false);
return table;
}
}
我不习惯使用FlowLayout
,因此我不知道如何在我使用的JFrame中移动这个对象。我知道,当您使用null
(绝对)布局时,您可以使用setBounds()
来告诉JFrame元素的位置。但是我如何在FlowLayout中做到这一点呢?
使用FlowLayout
无法做到这一点。您可以一个接一个地水平或垂直添加新组件,但不能将组件添加到特定位置。您可以尝试在JTable
之前/之后的空白面板或标签中使用一些技巧,但最好使用其他布局。
试着使用BorderLayout
,它很简单,有了它的帮助,你可以将你的JTable
定位在不同的地方。阅读教程。
或者您可以使用另一个LayoutManager
,阅读它们并进行选择。
使用FlowLayout
时,无法移动对象。所有对象都放置在一行中。
尝试使用BorderLayout
或GridBagLayout
。这是布局管理器的视觉指南。
Panel myTable = new Panel(new GridBagLayout());
GridBagConstraints c1 = new GridBagConstraints();
c1.fill = GridBagConstraints.HORIZONTAL; //area
c1.ipadx = 0; //spacing
c1.ipady = 0; //spacing
c1.weightx = 1.0; //horizontal
c1.weighty = 1.0; //vertical
c1.anchor = GridBagConstraints.CENTER; //orientation
c1.insets = new Insets(10,10,10,10); //padding
c1.gridx = 0; //column
c1.gridy = 0; //line
c1.gridheight = 1; //number of lines
c1.gridwidth = 1; //number of columns
myTable.add(new JScrollPane(table),c1);
如果更改方向,可以移动桌子。