次のコードを使用して、Java アプリケーションから Windows コマンドを実行します。次のようないくつかのWindowsコマンドを試しver
ましたが、それは私と一緒に動作します。アプリケーションで使用する必要があるコマンドはopenssl
. 私は Windows で作業しているので、Windows 用にダウンロードopenssl
しました。コマンド ライン ウィンドウで次のコマンドを試しましたが、正常に動作します。しかし、Java アプリケーションから試してみると、得られるものはすべて完了です。出力が得られません。誰でも助けることができますか?
コードは次のとおりです。
import java.io.*;
public class DebianChecker
{
public static void main(String args[])
{
try
{
Process p=Runtime.getRuntime().exec("cmd /c openssl s_client -connect
gmail.com:443");
p.waitFor();
BufferedReader reader=new BufferedReader(new InputStreamReader(p.getInputStream()));
String line=reader.readLine();
while(line!=null)
{
System.out.println(line);
line=reader.readLine();
}
}
catch(IOException e1) {}
catch(InterruptedException e2) {}
System.out.println("Done");
}
}