欢迎来到天天文库
浏览记录
ID:18414829
大小:99.00 KB
页数:32页
时间:2018-09-17
《jtable 不能正确显示标题》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、JTable不能正确显示标题,关于这个,官方文档里面有说:JTable组件显示数据时,如果直接将其放置在Frame的contentPane中则表头一行会显示不出来,如果将其放置在JScrollPane中显示数据的话,表头会自动显示出来。引用Sun的原话为:It'seasytoputatableinascrollpane.Youneedjustoneortwolinesofcode:JScrollPanescrollPane=newJScrollPane(table);table.setPreferredScrollableViewportSize(newDimensio
2、n(500,70));Thescrollpaneautomaticallygetsthetable'sheader,whichdisplaysthecolumnnames,andputsitontopofthetable.Evenwhentheuserscrollsdown,thecolumnnamesremainvisibleatthetopoftheviewingarea.Thescrollpanealsotriestomakeitsviewingareathesameasthetable'spreferredviewingsize.Thepreviouscodes
3、nippetsetsthetable'spreferredviewingsizewiththesetPreferredScrollableViewportSizemethod.Ifyou'reusingatablewithoutascrollpane,thenyoumustgetthetableheadercomponentandplaceityourself.Forexample:container.setLayout(newBorderLayout());container.add(table.getTableHeader(),BorderLayout.PAGE_S
4、TART);container.add(table,BorderLayout.CENTER);在使用时要注意! 所以说使用JTable显示数据时,要将Table添加在JScrollPane里面; 但是我的代码里面还是显示不出来,开始检查原因:原来:如下添加table不行:scrollPanel.add(table);应该改为:scrollPanel.setViewportView(table);//解决显示表头问题:必须用这个但是,这样似乎还是不行,在检查,在尝试,终于:he"governingforthepeople","Nomattertheinterestsoft
5、hemasses"conceptunderstandingisnotinplace.Thespecificworktreatswiththedeployment,afewleadingcadrescomplainthatworkistoocomplicated,toomuchresponsibility,thepressureistoolarge,toomuchemphasisonthedifficultyofthework.Forexample,noncoalmine JTable不能正确显示标题,关于这个,官方文档里面有说:JTable组件显示数据时,如果直接将其放
6、置在Frame的contentPane中则表头一行会显示不出来,如果将其放置在JScrollPane中显示数据的话,表头会自动显示出来。引用Sun的原话为:It'seasytoputatableinascrollpane.Youneedjustoneortwolinesofcode:JScrollPanescrollPane=newJScrollPane(table);table.setPreferredScrollableViewportSize(newDimension(500,70));Thescrollpaneautomaticallygetsthetable'
7、sheader,whichdisplaysthecolumnnames,andputsitontopofthetable.Evenwhentheuserscrollsdown,thecolumnnamesremainvisibleatthetopoftheviewingarea.Thescrollpanealsotriestomakeitsviewingareathesameasthetable'spreferredviewingsize.Thepreviouscodesnippetsetsthetable'spreferredviewi
此文档下载收益归作者所有