Java スクリプトによって開始された .exe プロセスのコンソールから入力を取得しようとしています。コンソール ウィンドウには何も表示されず、プロセスが終了するまでプログラムは何も読み取りません。
blServ = new ProcessBuilder(blPath + "Blockland.exe", "ptlaaxobimwroe", "-dedicated", "-port " + port, "-profilepath " + blPath.substring(0, blPath.length() - 1)).start();
System.out.println("Attempting to start server...\n" + blPath);
consoleIn = new BufferedReader(new InputStreamReader(blServ.getInputStream()));
「blServ」はプロセス オブジェクトです。はい、プログラムは正常に起動しています。
public void blStreamConsole() //called once every 500 milliseconds
{
String lineStr = "";
String line = "";
int lines = 0;
try
{
if (consoleIn != null)
{
while ((line = consoleIn.readLine()) != null)
{
//if (!line.equals("%"));
//{
lineStr += line + wordSym;
lines++;
//}
}
}
}
catch (IOException e)
{
netOut.println("notify" + wordSym + "ERROR: An I/O exception occured when trying to get data from the remote console. Some lines may not be displayed.");
}
if (!lineStr.equals("") && !(lineStr == null))
netOut.println("streamconsole" + wordSym + lines + wordSym + lineStr);
}
基本的に、このメソッドは、consoleIn オブジェクトでさらに入力待ちがあるかどうかを確認し、ある場合は、すべての行を別の文字列に追加し、その文字列をクライアントに送信します。残念ながら、Blockland.exe が閉じられると、すべてが 1 つの大きなチャンクで送信されます。インデントの問題については申し訳ありません。Stackoverflow エディターは、すべてのコードを再配置しました。