如何在Jtree中刷新XML

如何在Jtree中刷新XML,第1张

如何在Jtree中刷新XML

我添加了一个新的

Action
,以
popup
getJPopupForExplorerTree()
。您可能需要
xmlFile
XMLTree
构造函数中重构出来;为了方便起见,我已经对其进行了硬编码:

popup.add(new AbstractAction("Reload") {    public void actionPerformed(ActionEvent e) {        System.out.println("Reload");        try { root = getRoot("xml.xml"); setModel(new XMLTreeModel(root));        } catch (Exception ex) { ex.printStackTrace(System.err);        }    }});


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615694.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存