在 IDEA 插件中使用 属性 "idea.config.path",但值为空
use property "idea.config.path" in IDEA plugin ,but value is null
- 我只是在
actionPerformed
方法中使用了String path = System.getProperty("idea.config.path");
,然后我得到了null..
- 但是调试我的插件时,可以找到这个属性,值为
C:\Users\myusername\.IntelliJIdea2017.1\system\plugins-sandbox
- 最后,我用
System.getProperties().store(new FileWriter(new File("C:/temp/a.txt")), "");
把所有的属性放到一个文件里,a.txt
文件里真的没有"idea.config.path"
属性
com.intellij.openapi.application.PathManager#getConfigPath
- 我只是在
actionPerformed
方法中使用了String path = System.getProperty("idea.config.path");
,然后我得到了null.. - 但是调试我的插件时,可以找到这个属性,值为
C:\Users\myusername\.IntelliJIdea2017.1\system\plugins-sandbox
- 最后,我用
System.getProperties().store(new FileWriter(new File("C:/temp/a.txt")), "");
把所有的属性放到一个文件里,a.txt
文件里真的没有"idea.config.path"
属性
com.intellij.openapi.application.PathManager#getConfigPath