如何对齐附加到 JScrollPane 的文本
我认为屏幕截图值得几段
我能想到的最好方法是检查字符串的长度并根据给/取 \t
进行操作,但这看起来不太优雅。有更简单/更好的方法吗?
I think the screenshot is worth a couple of paragraphs
The best way I can think of doing it is to check for the length of the string and depending give/take \t
, but it just seems inelegant. Is there a simpler/better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会为此使用 JTable。您可以将一个放在 JScrollPane 中。这将使您自动对齐列。另外,您将获得列标题,这将有助于理解数据的含义。
I would use a JTable for this. You can put one in a JScrollPane. This will get you aligned columns automatically. Plus you will get column headers which will aid in understanding what the data means.
如果您想坚持使用纯文本并对字段长度有上限(您需要保证对齐),那么您可以使用 printf。
If you want to stick with plain text and have an upper bound on the length of fields (which you'd need to guarantee alignment), then you could use printf.