jscrollbar

JTable with horizontal scrollbar

拈花ヽ惹草 提交于 2019-11-26 04:49:12
问题 Is there any way to enable horizontal scroll-bar whenever necessary? The situation was as such: I\'ve a JTable , one of the cells, stored a long length of data. Hence, I need to have horizontal scroll-bar. Anyone has idea on this? 回答1: First, add your JTable inside a JScrollPane and set the policy for the existence of scrollbars: new JScrollPane(myTable, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); Then, indicate that your JTable must not auto-resize