我尝试创建一个程序来运行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: 现在一切正常:)
答案 0 :(得分:1)
我有几点建议:
(1)在创建流程之前调用processBuilder.redirectErrorStream(true);
,将流程的标准错误重定向到其标准输出。该过程可能是将消息写入其标准错误,但如果您只是阅读标准输出,则可能看不到它们。
(2)当BufferedReader的readLine()
返回null
时,基础流已到达文件结尾。没有必要再尝试阅读,因为你只会进一步null
。呼叫break
后,while
outputHandler
的{{1}}循环中的readLine()
null
将返回{{1}}。
我无法保证这些建议能够完全解决您的问题,但它们至少可以帮助您弄清楚您的计划无法正常运作的原因。