这样不行,我试过。import java.io.*;
public class test
{
public static void main(String args[])
{
try{
Process proc=Runtime.getRuntime().exec("test.exe");
OutputStreamWriter tosw=new OutputStreamWriter(proc.getOutputStream());
PrintWriter osw=new PrintWriter(proc.getOutputStream());
osw.write("prer");

}
catch(IOException ex)
{
System.out.println(ex.toString());
}
}
}