#java
#java
Вопрос:
Я использую jPowerShell для выполнения powershell на Java, но я получил искаженный, когда я executeCommand()
Вот мой код:
PowerShellResponse response = powerShell.executeCommand(getAll);
//Print results
System.out.println("result :" response.getCommandOutput());
используется executeCommand()
:
Future<String> result = threadpool.submit(commandProcessor);
commandOutput = result.get();
Я не знаю, как кодировать результат.
Ответ №1:
Возможно, это поможет?
Future<String> result = threadpool.submit(commandProcessor);
while (!result.isDone()) {}
String commandOutput = result.get();