如何在Jtree中刷新XML

前端之家收集整理的这篇文章主要介绍了如何在Jtree中刷新XML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我读了 here,但是如果xml文件发生了变化,jtree就不会重新加载/刷新
如何创建一个刷新/重新加载Jtree的函数
我尝试编写代码
refreshAction = new AbstractAction("Refresh",IconFactory.getIcon("delete",IconFactory.IconSize.SIZE_16X16)) {
public void actionPerformed(ActionEvent e) {
    XMLTree xmlClass = null;
    ((DefaultTreeModel) xmlClass.getModel()).reload(); 
    System.out.println("Refresh");
}};

但我得到了错误:java.lang.NullPointerException

我在getJPopupForExplorerTree()中添加了一个新的Action来弹出.你可能想要从XMLTree构造函数中重新考虑xmlFile;我在下面为了方便而硬编码:
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);
        }
    }
});
原文链接:https://www.f2er.com/xml/293089.html

猜你在找的XML相关文章