如何在Windows上的Java应用程序中设置更新PATH变量?

如何在Windows上的Java应用程序中设置更新PATH变量?,第1张

如何在Windows上的Java应用程序中设置/更新PATH变量

您可以使用

Process
对象执行命令,也可以使用读取该对象的输出
BufferedReader
,这是一个快速的示例,可以帮助您:

import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;public class Main {    public static void main(String args[]) {        try { Process proc = Runtime.getRuntime().exec("cmd set PATH=%PATH%;C:\Something\bin"); proc.waitFor(); BufferedReader reader = new BufferedReader(new InputStreamReader(proc.getInputStream())); String line = reader.readLine(); while (line != null) {     //Handle what you want it to do here     line = reader.readLine(); }        }         catch (IOException e1) {  //Handle your exception here        }        catch(InterruptedException e2) { //Handle your exception here        }        System.out.println("Path has been changed");    }}


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

原文地址: http://outofmemory.cn/zaji/5461901.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存