JList 在顶部而不是底部追加行

发布于 2024-12-29 20:22:20 字数 134 浏览 0 评论 0原文

我在网上搜索有关此问题的信息,但找不到任何相关答案。实际上,我的 JList 当前在列表底部附加了新行。我的问题案例需要的是我想添加或添加新行到我的 JList 模型(在顶部)。我怎样才能实现这个目标?

I was searching on web regarding this but could not find any relevant answer. Actually, my JList currently appends new row at the bottom of list. What my problem case needs is I want to add or prepend new row added to my JList model (at the top). How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终陌 2025-01-05 20:22:20

如果您访问过 java 文档,您就会知道 listModel 的某种方法 add(int index, Object element) ,以防万一应该用于插入元素在您想要的索引处。

示例:

DefaultListModel myListModel = (DefaultListModel) myList.getModel();
myListModel.add(0, "new row added at top");

Had you visited the java docs, you would have known of a certain method add(int index, Object element) for the listModel which in case should be used to insert the element at the index you desire.

EXAMPLE:

DefaultListModel myListModel = (DefaultListModel) myList.getModel();
myListModel.add(0, "new row added at top");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文