Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当单元格太小而无法显示整个字符串时,它会通过添加“...”来缩短结尾。例如:“This is a string”变成“This is...” 有没有办法在开头缩短它?“……一个字符串”。
谢谢!
JTable默认情况下使用 aJLabel作为其渲染组件,所以基本上你需要告诉该标签如何缩短你的字符串。您可以通过实现自定义来做到这一点TableCellRenderer。如果它不完全适合您的需要,也许您可以使用左点渲染器作为起点并对其进行扩展。
JTable
JLabel
TableCellRenderer