怎么在java里打开bat文件

怎么在java里打开bat文件,第1张

public class MyTest {

public static void mm(){

Runtime run= Runtime.getRuntime()

try

{

run.exec("D:/abc.bat")//添加程序路径

}catch(Exception e)

{

e.printStackTrace()

}

}

public static void main(String[] args) throws IOException {

Desktop.getDesktop().open(new File("d:/abc.bat"))

}

}

}

java可使用Runtime.exec执行bat文件,示例代码如下:

import java.io.*

import java.util.*

public class TestExec {

public void runbat(int name) {

String cmd = "cmd /c start D:/bat/"+name+".bat"

try {

Process ps = Runtime.getRuntime().exec(cmd)

System.out.println(ps.getInputStream())

} catch(IOException ioe) {

ioe.printStackTrace()

}

}

public static void main(String[] args){

TestExec test1 = new TestExec ()

test1.runbat("abc")

}

}

其中,abc.bat可以是已经存在的bat,也可以是动态生成的bat(如果需要根据已有参数执行bat,则可以使用动态生成bat文件的方式)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11873603.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存