用java运行bat文件

发布于 2024-10-18 05:10:51 字数 333 浏览 3 评论 0原文

在这里,我尝试从 java 程序运行 bat 文件。 我想从 c:\File\Create.bat 运行 bat 文件,但是当我运行代码时 它在我的 d:\NetBeansPeoject\test.java 中搜索 我的java程序位于哪里,为什么?

这里是代码:

try
{
    ProcessBuilder pb = new ProcessBuilder("c:\\File\\Create.bat");
   Process p = pb.start();

}
catch (IOException e)
 {
e.printStackTrace();
}
    }
}

here i'm trying to run a bat file from a java program.
i want to run the bat file from c:\File\Create.bat but when i run the code
it's searching in my d:\NetBeansPeoject\test.java
where my java program is located, why??

here the code:

try
{
    ProcessBuilder pb = new ProcessBuilder("c:\\File\\Create.bat");
   Process p = pb.start();

}
catch (IOException e)
 {
e.printStackTrace();
}
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

℉服软 2024-10-25 05:10:51

使用 ProcessBuilder ,你调用start()
执行命令。之前
调用start(),你可以操作
如何创建流程。如果
您希望该过程开始于
不同的目录,你不传递
作为命令行参数归档。
相反,您设置流程构建器的
通过传递文件的工作目录
到directory()方法:

   public ProcessBuilder directory(File directory)

With ProcessBuilder, you call start()
to execute the command. Prior to
calling start(), you can manipulate
how the Process will be created. If
you want the process to start in a
different directory, you don't pass a
File in as a command line argument.
Instead, you set the process builder's
working directory by passing the File
to the directory() method:

   public ProcessBuilder directory(File directory)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文