我想知道如何使用视图模板在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");
}
任何人都请更正我的代码并让我知道我在哪里犯了错误。