我无法获得项目的路径。我尝试了很多方法,但结果是eclipse目录的路径,我不知道为什么。
请注意,我没有创建项目,我导入了它。
以下是我的尝试:
第一个:
private String destination = new File("").getAbsolutePath()+"\\";
第二个:
IWorkspace workspace = ResourcesPlugin.getWorkspace();
File file2 = workspace.getRoot().getLocation().toFile();
private String destination = file2..getAbsolutePath()+"\\";
第三个:
private String destination=System.getProperty("user.dir");
所有这些方法对我都不起作用,我不知道为什么。