作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 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/
我是一名优秀的程序员,十分优秀!