gpt4 book ai didi

java - 我的 ProcessBuilder 代码不起作用。从该程序运行 craftbukkit

转载 作者:行者123 更新时间:2023-12-01 12:39:19 25 4
gpt4 key购买 nike

我尝试创建一个程序来运行 craftbukkit.jar 并处理输入/输出流,但它不起作用。

这是我的代码,我做错了什么?

package info.nordbyen.bukkitwrapper;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;

public class BukkitWrapper
{
private final static String PATH_TO_JAVA_PROGRAM = "C:\\Program Files\\Java\\jre7\\bin";
private final static String NAME_OF_JAVA_PROGRAM = "java.exe";

private final static String PATH_TO_CRAFTBUKKIT_FILE = "C:\\l0lkj\\bukkit\\1.7.10_wrapper_tester";
private final static String NAME_OF_CRAFTBUKKIT_FILE = "craftbukkit-1.7.10-R0.1-20140808.005431-8";

private static Process process = null;
private static BufferedReader in = null;
private static OutputStream os = null;

private static Scanner scanner;

public static void main( String[] args )
{
scanner = new Scanner( System.in );

System.out.println( "Starter..." );
ProcessBuilder processBuilder = new ProcessBuilder( PATH_TO_JAVA_PROGRAM + "\\" + NAME_OF_JAVA_PROGRAM, "-jar", PATH_TO_CRAFTBUKKIT_FILE + "\\" + NAME_OF_CRAFTBUKKIT_FILE ); //,"--nojline"
try
{
process = processBuilder.start();
}
catch ( IOException e )
{
System.out.println( "ERROR!" );
System.out.println( e );
System.exit( -1 );
}
if( process == null )
{
System.out.println( "ERROR!" );
System.out.println( "process is null" );
System.exit( -1 );
}
InputStream is = process.getInputStream();
os = process.getOutputStream();
if( is == null )
{
System.out.println( "ERROR!" );
System.out.println( "is is null" );
System.exit( -1 );
}
if( os == null )
{
System.out.println( "ERROR!" );
System.out.println( "os is null" );
System.exit( -1 );
}
in = new BufferedReader( new InputStreamReader( is ) );

inputHandler();
outputHandler();
}

private static void inputHandler()
{
Thread thread = new Thread()
{
public void run()
{
while( true )
{
String line = scanner.nextLine();
try
{
os.write( line.getBytes() );
}
catch ( IOException e )
{
System.out.println( "ERROR!" );
System.out.println( e );
System.exit( -1 );
}
}
}
};
thread.start();
}

private static void outputHandler()
{
while( true )
{
String line = null;
try
{
line = in.readLine();
}
catch ( IOException e )
{
System.out.println( "ERROR!" );
System.out.println( e );
}
System.out.println( currentTime() + line );
}
}

private static String currentTime()
{
SimpleDateFormat sdf = new SimpleDateFormat( "[yyyy-mm-dd hh:mm:ss] -> " );
Date now = new Date();
String date = sdf.format( now );
return date;
}
}

我没有收到任何错误,但输入始终返回 null。这是控制台:

[2014-04-12 04:04:06] -> null
[2014-04-12 04:04:06] -> null
[2014-04-12 04:04:06] -> null
[2014-04-12 04:04:06] -> null
[2014-04-12 04:04:06] -> null
Etc. Etc.

谢谢你的帮助:)

编辑:对于遇到同样问题的人,只需添加

processBuilder.redirectErrorStream(true);
processBuilder.redirectOutput();
processBuilder.redirectInput();
正如卢克·伍德沃德在回答中所说,在创建流程之前。

对于 null 问题,我只是添加了一个简单的 if 语句:

if( line.length() >= 1 )
{
System.out.println( Div.currentTime() + line );
}

我在向进程写入文本时仍然遇到问题。谁知道如何解决这个问题?

编辑2:现在一切正常:)

最佳答案

我有几个建议:

(1) 在创建进程之前调用 processBuilder.redirectErrorStream(true);,将进程的标准错误重定向到其标准输出。该进程可能会将消息写入其标准错误,但如果您只读取标准输出,则可能看不到它们。

(2) 当 BufferedReader 的 readLine() 返回 null 时,底层流已到达文件末尾。尝试继续阅读是没有意义的,因为您只会得到更多的 null。一旦调用 readLine() 返回 null,您就应该break跳出outputHandler中的while循环.

我不能保证这些建议能够完全解决您的问题,但它们至少应该帮助您找出程序无法运行的原因。

关于java - 我的 ProcessBuilder 代码不起作用。从该程序运行 craftbukkit,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25266408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com