Java - 使用自定义OutputStream的PrintStream上的奇怪行为

时间:2013-04-20 08:13:55

标签: java behavior outputstream printstream

我正在尝试编写一个程序,将System.out重定向到JTextArea(它不一定是JTextArea),但是当我调用System.out.println(“Test!”)输出到文本时区域是这样的:

\n
st!
\n

我的OutputStream的代码:

package gui;

import java.awt.*;
import java.io.*;
import javax.swing.text.*;

public class LogOutputStream extends OutputStream
{
    public void write(final int b) throws IOException
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                write0(b);
            }
        });
    }

    public void write(final byte[] b, final int off, final int len)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                write0(b, off, len);
            }
        });
    }

    public void write(final byte[] b)
    {
        EventQueue.invokeLater(new Runnable()
        {
            public void run()
            {
                write0(b);
            }
        });
    }

    private void write0(int b)
    {
        Document doc = FernflowerGUI.frame.textArea.getDocument();
        try
        {
            doc.insertString(doc.getLength(), String.valueOf((char)b), null);
        }
        catch(BadLocationException impossible)
        {

        }
    }

    private void write0(byte[] b, int off, int len)
    {
        Document doc = FernflowerGUI.frame.textArea.getDocument();
        try
        {
            doc.insertString(doc.getLength(), new String(b, off, len), null);
        }
        catch(BadLocationException impossible)
        {

        }
    }

    private void write0(byte[] b)
    {
        write0(b, 0, b.length);
    }
}

创建PrintStream的代码:

PrintStream ps = new PrintStream(new LogOutputStream(), true);

任何人都可以告诉我地球上发生了什么吗?

1 个答案:

答案 0 :(得分:1)

您的代码基本上不是线程安全的。

您正在接受接受字节数组的同步调用 - 然后您将在稍后使用该字节数组,并假设它仍将具有相同的内容。如果write()的调用者在方法返回后立即覆盖字节数组中的数据怎么办?当你使用它时,你将没有正确的数据。

我会从String来电中的字节数组中提取write,然后在调用String时使用write0

(我个人也使用Writer而不是OutputStream - 从根本上说你想要处理文本数据,而不是二进制数据。)