繁体   English   中英

Java 使用 function 调用 Powershell 脚本并且不将写入主机返回到 Z93F725A07423FE1DC846F

[英]Java calling Powershell script with function and not returning Write-Host to java

我正在使用 Java 调用 powershell 脚本。 powershell 脚本是使用 function 构建的,function 会将值写入控制台。 我需要在 java 中捕获这些值。 我的 poweshell 脚本如下

 $TokenCSV="M:\work\Powershell\TokenExtractedFromDB_Spec.csv"
$TokenXlPath="M:\work\Powershell\TokenListconverted.xlsx"
$Switch="Token"
Write-Host "Inside ConvertCSVtoEXL2 calling fuc  :"
$x=ConverToExlFile $TokenCSV $TokenXlPath $Switch

###Function
function ConverToExlFile
{
 Param ([string]$TokenCSV,
        [string]$TokenXlPath,
        [string]$Switch)
    Write-Output "Inside ConverToExlFile Function  :"| Out-Null

    
    for($row = 2;$row -lt 10;$row++)
    {
    Write-Output "Inside for loop :$row"| Out-Null
    }
    return
}

通过 java 调用上述代码时,我没有在 while 循环中获取值,如下所示。 一旦 powershell 脚本执行,它就会完成。

 Process proc = runtime.exec("cmd.exe /c powershell.exe  M:\\work\\Powershell\\V2\\ConvertCSVtoEXL2.ps1");
        System.out.println("2...");
        InputStream is = proc.getInputStream();
        InputStreamReader isr = new InputStreamReader(is);
        BufferedReader reader = new BufferedReader(isr);
        String line;
        System.out.println("3");
       while ((line = reader.readLine()) != null)
       {
            System.out.println(line);
            //System.out.println(reader.readLine());
            System.out.println("4");
       }

如果有人可以帮助我,那就太好了。

  • 您不需要cmd.exe 您可以直接运行powershell.exe
  • 您的PowerShell脚本正在将 output 发送到Out-Null ,因此显然不会将任何内容写入标准 output。
  • powershell.exe接受可用于运行脚本的-File参数。
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class PrcBldTs {

    public static void main(String[] args) throws IOException, InterruptedException {
        ProcessBuilder pb = new ProcessBuilder("powershell.exe", "-File", "M:\\work\\Powershell\\V2\\ConvertCSVtoEXL2.ps1");
        Process p = pb.start();
        try (InputStreamReader isr = new InputStreamReader(p.getInputStream());
             BufferedReader br = new BufferedReader(isr)) {
            String line = br.readLine();
            while (line != null) {
                System.out.println(line);
                line = br.readLine();
            }
        }
        int exitStatus = p.waitFor();
        System.out.println("exit status = " + exitStatus);
    }
}

请注意,您必须调用方法waitFor()以便您的 java 代码将等到PowerShell脚本终止。

请记住, ProcessBuilder不会模拟 Windows 命令提示符。 ProcessBuilder构造函数中,您需要将传递的命令拆分为单词列表。

当然,如果您只想打印PowerShell脚本 output,您可以简单地调用 class ProcessBuilder的方法redirectIO() 那么上面的代码就变成了:

import java.io.IOException;

public class PrcBldTs {

    public static void main(String[] args) throws IOException, InterruptedException {
        ProcessBuilder pb = new ProcessBuilder("powershell.exe", "-File", "M:\\work\\Powershell\\V2\\ConvertCSVtoEXL2.ps1");
        pb.inheritIO();
        Process p = pb.start();
        int exitStatus = p.waitFor();
        System.out.println("exit status = " + exitStatus);
    }
}

你可以使用proc.waitFor(); 在从 proc 获取输入 stream 之前

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM