Java 操作cmd 和Java操作powershell 您所在的位置:网站首页 powershell运行java Java 操作cmd 和Java操作powershell

Java 操作cmd 和Java操作powershell

2023-12-28 08:22| 来源: 网络整理| 查看: 265

来自https://www.pstips.net/question/4525.html和https://www.pstips.net/question/8759.html

1 java 通过cmd操作powershell

private static void exeCmd() { InputStream in = null; BufferedReader reader = null; try { String cmd = "cmd /c powershell E:/test.ps1 p1 p2"; Process p = Runtime.getRuntime().exec(cmd); p.getOutputStream().close(); in = p.getInputStream(); reader = new BufferedReader(new InputStreamReader(in)); String line = null; while ((line = reader.readLine()) != null) { System.out.println(line); } System.out.println("out put end —"); p.waitFor(); p.destroy(); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } } private static void exeCmd2() { InputStream in = null; BufferedReader reader = null; try { String cmd = "cmd /c powershell Get-Content E:/ate.txt"; Process p = Runtime.getRuntime().exec(cmd); p.getOutputStream().close(); in = p.getInputStream(); reader = new BufferedReader(new InputStreamReader(in)); String line = null; while ((line = reader.readLine()) != null) { System.out.println(line); } System.out.println("out put end —"); p.waitFor(); p.destroy(); } catch (IOException e) { e.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } }

  

  

  2 java 直接操作powershell

public static void main(String[] args) throws IOException { //String command = "powershell.exe your command"; //Getting the version String command = "powershell.exe Get-Content E:/ate.txt"; // Executing the command Process powerShellProcess = Runtime.getRuntime().exec(command); // Getting the results powerShellProcess.getOutputStream().close(); String line; System.out.println("Standard Output:"); BufferedReader stdout = new BufferedReader(new InputStreamReader( powerShellProcess.getInputStream())); while ((line = stdout.readLine()) != null) { System.out.println(line); } stdout.close(); System.out.println("Standard Error:"); BufferedReader stderr = new BufferedReader(new InputStreamReader( powerShellProcess.getErrorStream())); while ((line = stderr.readLine()) != null) { System.out.println(line); } stderr.close(); System.out.println("Done"); }

 powershell相关操作文件  https://files.cnblogs.com/files/funkboy/ate.zip

 


【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有