gpt4 book ai didi

java - 如何在单击按钮时从 Java 代码运行批处理文件

转载 作者:行者123 更新时间:2023-11-30 11:24:22 27 4
gpt4 key购买 nike

单击 jsp 页面中的按钮时,我想运行一个批处理文件。我编写了这段代码来在一个方法中执行一个批处理文件,但它不起作用。请帮帮我。

public String scheduler() {
String result=SUCCESS;
try {

Process p = Runtime.getRuntime().exec("cmd /c start.bat", null, new File("C:\\Program Files\\MySQL\\MySQL Server 5.0\\bin\\start"));

System.out.println("manual scheduler for application.."+p);
} catch(Exception e) {
}
}

最佳答案

添加这段代码,

batFile.setExecutable(true);

//Running bat file
Process exec = Runtime.getRuntime().exec(PATH_OF_PARENT_FOLDER_OF_BAT_SCRIPT_FILE+File.separator+batFile.getName());
byte []buf = new byte[300];
InputStream errorStream = exec.getErrorStream();
errorStream.read(buf);
logger.debug(new String(buf));
int waitFor = exec.waitFor();
if(waitFor==0) {
System.out.println("BAT script executed properly");
}

关于java - 如何在单击按钮时从 Java 代码运行批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20698890/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com