import java.io.*;
public class Exec {
public static void main(String[] args) throws IOException {
Runtime r = Runtime.getRuntime();
Process p = r.exec("cmd");
PrintWriter writer = new PrintWriter(new OutputStreamWriter(p
.getOutputStream()));
BufferedReader reader = new BufferedReader(new InputStreamReader(p
.getInputStream()));
writer.println("set path");
writer.println("exit");
writer.flush();
String path = "";
final String prefix = "Path=";
for (String line = null; (line = reader.readLine()) != null;) {
if (line.startsWith("Path=")) {
path = line.substring(prefix.length());
}
}
System.out.println(path);
writer.close();
reader.close();
}
最后
以上就是风中小丸子最近收集整理的关于获得path变量的全部内容,更多相关获得path变量内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复