在eclipse插件视图中读取Xml文件

时间:2014-10-30 06:20:55

标签: eclipse eclipse-kepler eclipse-plugin eclipse-pde

我想知道如何使用视图模板在Eclipse插件中读取和修改XML文件。 我在view类的createPartControl方法中编写了以下代码。点击按钮后,此方法应读取xml文件,但不会。它抛出文件不存在错误。

代码:

        IWorkspace workspace = ResourcesPlugin.getWorkspace();
        IWorkspaceRoot iroot = workspace.getRoot();
        IProject project  = iroot.getProject("samplePlugin");
        IFolder folder = project.getFolder("resources");
        IFile file=folder.getFile("repository.xml");

        if(file.exists())
        {
            System.out.println("File Exists");
            try {
                doc = docBuilder.parse(file.getContents());
            } catch (Exception e) {
                e.printStackTrace();
            }  
        }
        else {
            System.out.println("File not exists");
             }

任何人都请更正我的代码并让我知道我在哪里犯了错误。

0 个答案:

没有答案