1
私のRCP 4アプリでは、どのようにアプリケーションのワークスペースパスを取得できますか?私はいくつか試しましたが失敗しました:RCP 4アプリで現在のワークスペースパスを取得するにはどうすればよいですか?
ResourcesPlugin.getWorkspace().getRoot(); //Cannot used in RCP 4 app
URL fileURL = FileLocator.find(Platform.getProduct().getDefiningBundle(),new Path("/"), null); //is not workspace
Location instanceLocation = Platform.getInstanceLocation(); // the same as getInstallLocation()
String s = System.getProperty("eclipse.workspace"); //
助けてください!ありがとう!