这个问题已经在这里有了答案: > Get the source directory of a Bash script from within the script itself 58个
我有一个Java应用程序,并且我使用Runtime.getRuntime().exec来调用批处理文件.当我使用Runtime.getRuntime().exec来调用Linux批处理文件时,该批处理文件找不到自己的目录.
我在批处理文件中使用了pwd命令,但它返回了应用程序路径.
我需要批处理文件自身的物理路径.
我怎样才能做到这一点?
解决方法:
您必须使用ProcessBuilder才能完成:
ProcessBuilder builder = new ProcessBuilder( "pathToExecutable");
builder.directory( new File( "..." ).getAbsoluteFile() ); //sets process builder working directory
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。