java 里的JTable问题

publicclassRextendsJFrame{JTabletj=null;JScrollPanejsp=null;JTablejt=null;//查APIrowDa... public class R extends JFrame {
JTable tj = null;
JScrollPane jsp = null;
JTable jt = null;
// 查API rowData要求的是Vector数据
Vector rowData = null;
Vector columnNames = null;
public R (){
columnNames = new Vector();
columnNames.add("学号");
rowData = new Vector();
Vector row= new Vector();
row.add( 1001);
rowData.add(row);
jt=new JTable(rowData,columnNames);
this.add(jt);
this.setSize(500,200 );
this.setVisible(true);
this.setLocationRelativeTo(null);
this.setResizable(false);
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
this.setBackground(Color.red);
}
public static void main(String[] args) {
new R();
}
}

为什么没有列名显示啊
展开
 我来答
lecroy03
2013-04-15 · TA获得超过313个赞
知道小有建树答主
回答量:240
采纳率:100%
帮助的人:144万
展开全部
jtable要添加在JScrollPane中才显示表头(列名)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式