IntelliJ 获取当前工作目录的问题
这是我的maven项目结构
ProjectParent -Class1 -Class2 -Module1 (another sub directory) --Module1Class1 --Module1Class2
现在,当我从IntelliJ运行Module1Class1时,我当前的工作目录是ProjectParent目录,但是当我从eclipse运行Module1Class1时,我当前的工作目录是ProjectParent/Module1目录。
为什么这在 intellij & 中有所不同?我怎样才能改变这个,所以我的当前目录总是从我的类开始执行的地方开始,就像这个例子中的“Module1Class1”目录一样。
Here is my maven project structure
ProjectParent -Class1 -Class2 -Module1 (another sub directory) --Module1Class1 --Module1Class2
Now when I run Module1Class1 from IntelliJ my current working directory is where ProjectParent directory, but when I run Module1Class1 from eclipse, my current working directoru is ProjectParent/Module1 directory.
Why this is different in intellij & how can I change this, so my current directory is always from where my class started execution like in this example 'Module1Class1' directory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该编辑模板运行/调试配置并在工作目录字段中指定
$MODULE_DIR$
变量。所有新配置都将继承此默认设置,并且该变量将替换为您要运行的模块的目录。
有一项功能请求将其设为默认设置,请投票。
You should edit the template Run/Debug configuration and specify
$MODULE_DIR$
variable in the Working directory field.All the new configurations will inherit this default setting and the variable will be substituted with the directory of the module that you want to run.
There is a feature request to make it the default setting, please vote.
您可以在运行配置对话框中编辑工作目录。
You can edit the working directory from within the run configurations dialog.