我是靠谱客的博主 风中小丸子,这篇文章主要介绍获得path变量,现在分享给大家,希望可以做个参考。

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变量内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(108)

评论列表共有 0 条评论

立即
投稿
返回
顶部