-1

如何更改System.out我用来检查结果的方法。
我需要测试这个方法。最好在输出为PrintStream.
怎么能解决这个问题?

代码:

private void scan(File file) {
        Scanner scanner = null;
        int matches = 0;

        try {
            scanner = new Scanner(file);
        } catch (FileNotFoundException e) {
            System.out.println("File Not Found.");
            e.printStackTrace();
        }

        while (scanner.hasNext())
            if (scanner.next().equals(whatFind)) {
                matches++;
            }

        if (matches > 0) {
            String myStr = String.format(
                    "File: %s - and the number of matches " + "is: %d",
                    file.getAbsolutePath(), matches);
            System.out.println(myStr);
        }
    }

问题:

  • 如何将输出重构System.outPrintStream
4

2 回答 2

1

尝试使用这个
PrintWriter out = new PrintWriter(System.out);

最后不要忘记关闭它。
out.close();

注意:out println()System.out.println()

更新

import java.io.PrintStream;
import java.io.PrintWriter;

public class TimeChecker 
{
    public static void main(String[] args) 
    {
        /**
         * Normal System.out.println
         */
        long start = System.currentTimeMillis();
        for(int i=1; i<1000000000; i++);
        long end = System.currentTimeMillis();
        System.out.println((end-start));

        /**
         * Using PrintWriter
         * 
         * Note: The output is displayed only when you write "out.close()"
         * Till then it's in buffer. So once you write close() 
         * then output is printed
         */
        PrintWriter out = new PrintWriter(System.out);
        start = System.currentTimeMillis();
        for(int i=1; i<1000000000; i++);
        end = System.currentTimeMillis();
        out.println((end-start));

        /**
         * Using PrintStream
         */
        PrintStream ps = new PrintStream(System.out, true);
        System.setOut(ps);
        start = System.currentTimeMillis();
        for(int i=1; i<1000000000; i++);
        end = System.currentTimeMillis();
        ps.println((end-start));

        // You need to close this for PrintWriter to display result
        out.close();
    }

}

这将使您了解它们如何工作以及彼此不同。
希望这可以帮助!!

于 2013-03-04T12:01:07.343 回答
0

试试这样: PrintStream 匿名对象,它不会保证关闭流。但 PrintWriter 保证。

new PrintStream(System.out).print(str);    

这个答案是我从PrintStream 编程中得到的。

于 2013-03-04T12:16:23.120 回答