gpt4 book ai didi

java - 使 JTable 可滚动

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:00:33 25 4
gpt4 key购买 nike

我正在尝试创建一个包含 2 列的 JTable,其中一列必须显示产品名称,第二列显示价格。问题是 JTable 非常小,所以我需要一个滚动条,但我无法创建它。

enter image description here

DefaultTableModel model = new DefaultTableModel();
JTable productos = new JTable(model);


model.addColumn("Product");//name of the first columns
model.addColumn("Price");//name of the second columns
BTW: the table doesn't show the name of the column, but creates the 2 columns


for (i=0; i<null_copy4; i++)//null_copy4 is a integer that shows me how many stacks are used in the array
{
model.insertRow(model.getRowCount(), new Object[]{product_copy3[i],price_copy3[i]});
}
//product_copy3 and price_copy3 are arrays. String[] and integer[].
products.setBounds(5,50,200,200); //define the dimensions of the JTable
this.add(productos);//add it to the window

最佳答案

将其包装在 JScrollPane 中怎么样? ?

关于java - 使 JTable 可滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8086974/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com