在Java,Swing,Flowlayout中移动Jtable

时间:2013-12-03 13:10:27

标签: java swing flowlayout

到目前为止我有这个代码:

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中做到这一点?

2 个答案:

答案 0 :(得分:2)

FlowLayout无法做到这一点。您可以水平或垂直添加新组件,但不能将组件添加到特定位置。您可以尝试在JTable之前/之后使用空白面板或标签的一些技巧,但最好使用其他布局。

尝试使用BorderLayout,这很简单,在此帮助下,您可以将JTable放在不同的位置。请阅读tutorial

或者您可以使用其他LayoutManagerread来查看它们并选择。

答案 1 :(得分:1)

使用FlowLayout,您无法移动对象。所有对象都放在一行中。

尝试使用BorderLayoutGridBagLayoutHere's a visual guide to Layout Managers

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);

如果更改方向,可以移动工作台。