あなたは、例えば
import java.io.IOException;
import java.io.OutputStream;
import javax.swing.JTextArea;
/**
* TextAreaOutputStream creates an outputstream that will output to the
* given textarea. Useful in setting System.out
*/
public class TextAreaOutputStream extends OutputStream {
public static final int DEFAULT_BUFFER_SIZE = 1;
JTextArea mText;
byte mBuf[];
int mLocation;
public TextAreaOutputStream(JTextArea component) {
this(component, DEFAULT_BUFFER_SIZE);
}
public TextAreaOutputStream(JTextArea component, int bufferSize) {
mText = component;
if (bufferSize < 1) bufferSize = 1;
mBuf = new byte[bufferSize];
mLocation = 0;
}
@Override
public void write(int arg0) throws IOException {
//System.err.println("arg = " + (char) arg0);
mBuf[mLocation++] = (byte)arg0;
if (mLocation == mBuf.length) {
flush();
}
}
public void flush() {
mText.append(new String(mBuf, 0, mLocation));
mLocation = 0;
}
}
は、テキストエリアにあなたの答えのための
おかげで、あなたのSystem.outを送信するためにSystem.setOut(OutputStreamを)使用した後、これを作成し、TextAreaOutputStreamを必要としています。それは働いている.. – user5809644
ありがとう、しかし、ControlAltDelは正しいです:私はシステムの出力をリダイレクトする必要があります。私はこれに私の答えを調整しました。 – JensS
新しいコード "System.out.println(" hello ");"表示されません。出力... jframeだけが表示されています... – user5809644