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.
我的一个单元格中有多个超链接JTable。
JTable
如果我们点击特定链接,那么超链接 URL 应该在 Internet Explorer 中打开。
JTable 支持 html,它使用 JLabel 字符串解析器/渲染器,因此您可以插入例如
<html><a href="http://link1.com">link1</a><br><a href="http://link2.com">link2</a></html>进入其中一个单元格,它应该可以正常工作。
<html><a href="http://link1.com">link1</a><br><a href="http://link2.com">link2</a></html>