簡體   English   中英

使用 PowerShell 使用 Java 執行 WQL

[英]Execute WQL with Java using PowerShell

我測試了這個 Java 代碼,它執行了 WQL 查詢到 PowerShell:

import java.io.BufferedReader;
import java.io.File;
import java.io.InputStream;
import java.io.InputStreamReader;

/**
 * Operations for executing Windows Powershell Scripts from Java.
 *
 * @author Brian Thorne
 */
public class Sample
{

    public static void main(String[] args) throws Exception
    {
        executePSCommand("Get-WmiObject Win32_Processor");
    }

    /**
     * Executes a Powershell command.
     *
     * @param command the command
     * @return the result as String.
     * @throws Exception if an error occurs
     */
    public static String executePSCommand(String command) throws Exception
    {
        String cmd = "cmd /c powershell -ExecutionPolicy RemoteSigned -noprofile -noninteractive " + command;
        return exec(cmd);
    }

    /**
     * Executes a Powershell script.
     *
     * @param scriptFilename the filename of the script
     * @param args any arguments to pass to the script
     * @return the result as String.
     * @throws Exception if an error occurs
     */
    public static String executePSScript(String scriptFilename, String args) throws Exception
    {
        if (!new File(scriptFilename).exists())
            throw new Exception("Script file doesn't exist: " + scriptFilename);

        String cmd = "cmd /c powershell -ExecutionPolicy RemoteSigned -noprofile -noninteractive -file \"" + scriptFilename + "\"";
        if (args != null && args.length() > 0)
            cmd += " " + args;
        return exec(cmd);
    }

    /**
     * Executes a batch file. If you want to call Powershell from the batch file you need to do it using this syntax: powershell -ExecutionPolicy RemoteSigned -NoProfile
     * -NonInteractive -File c:/temp/script.ps1
     *
     * @param batchFilename the filename of the batch file
     * @param params any parameters to pass to the batch file
     * @return the result as String.
     * @throws Exception if an error occurs
     */
    public static String executeBatchFile(String batchFilename, String params) throws Exception
    {
        if (!new File(batchFilename).exists())
            throw new Exception("Batch file doesn't exist: " + batchFilename);

        String cmd = "cmd /c \"" + batchFilename + "\"";
        if (params != null && params.length() > 0)
            cmd += " " + params;
        return exec(cmd);
    }

    private static String exec(String command) throws Exception
    {
        StringBuffer sbInput = new StringBuffer();
        StringBuffer sbError = new StringBuffer();

        Runtime runtime = Runtime.getRuntime();
        Process proc = runtime.exec(command);
        proc.getOutputStream().close();
        InputStream inputstream = proc.getInputStream();
        InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
        BufferedReader bufferedreader = new BufferedReader(inputstreamreader);

        String line;
        while ((line = bufferedreader.readLine()) != null)
        {
            sbInput.append(line + "\n");
        }

        inputstream = proc.getErrorStream();
        inputstreamreader = new InputStreamReader(inputstream);
        bufferedreader = new BufferedReader(inputstreamreader);
        while ((line = bufferedreader.readLine()) != null)
        {
            sbError.append(line + "\n");
        }

        if (sbError.length() > 0)
            throw new Exception("The command [" + command + "] failed to execute!\n\nResult returned:\n" + sbError.toString());

        return "The command [" + command + "] executed successfully!\n\nResult returned:\n" + sbInput.toString();
    }
}

出於某種原因,當我運行代碼時,我沒有得到任何 output。你能幫忙修復這段代碼嗎?

您的 main 方法僅調用executePSCommand ,它返回一個字符串。 你永遠不會對返回值做任何事情,所以 output 不太可能出現。

像這樣的事情怎么樣,

String s = executePSCommand("Get-WmiObject Win32_Processor");
System.out.println(s);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM