gpt4 book ai didi

java - 如何在Java类中执行cmd命令?

转载 作者:行者123 更新时间:2023-11-29 05:50:34 24 4
gpt4 key购买 nike

我想在 java 代码中调用 cmd 命令。我说:

String str ="C:/uploaded_files/111.txt";
Process process = Runtime.getRuntime().exec(new String[]{"cmd.exe", "/c",str});
System.out.println(str);

并且不要获取 111.txt。这很奇怪,因为当这段代码在 jsp 中时一切正常。有什么问题吗?

最佳答案

这段代码有什么问题。它工作得很好。打开并显示文件 111.txt 的内容

try {
String str ="C:/uploaded_files/111.txt";
Process process = Runtime.getRuntime().exec(new String[]{"cmd.exe", "/c",str});
System.out.println(str);
} catch (Exception ex) {}

请检查路径是否正确,目录和文件是否有漏拼

关于java - 如何在Java类中执行cmd命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14029187/

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