我现在有一个文本文件,需要一行一行读取出来,数据量很大。String temp = null;
String[] args = null;
while((temp=reader.readline())!=null){
     args = temp.split("[|]");
     if(null!=dao.findbyid(args[2])){
        System.out.println(temp);
     }
}
reader.close();像这种操作大量字符串数据的应该怎么做?StringBuffer类拼接字符串我晓得了,其他的呢?

解决方案 »

  1.   

    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.io.OutputStream;
    import java.io.OutputStreamWriter;
    import java.io.PrintStream;
    import java.io.PrintWriter;
    public final class AccessTextFile {
        /**
         * 1. 演示将流中的文本读入一个 StringBuffer 中
         * @throws IOException
         */
        public void readToBuffer(StringBuffer buffer, InputStream is)
            throws IOException {
            String line;        // 用来保存每行读取的内容
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));
            line = reader.readLine();       // 读取第一行
            while (line != null) {          // 如果 line 为空说明读完了
                buffer.append(line);        // 将读到的内容添加到 buffer 中
                buffer.append("\n");        // 添加换行符
                line = reader.readLine();   // 读取下一行
            }
        }
        /**
         * 2. 演示将 StringBuffer 中的内容读出到流中
         */
        public void writeFromBuffer(StringBuffer buffer, OutputStream os) {
            // 用 PrintStream 可以方便的把内容输出到输出流中
            // 其对象的用法和 System.out 一样
            // (System.out 本身就是 PrintStream 对象)
            PrintStream ps = new PrintStream(os);   
            ps.print(buffer.toString());
        }
        /**
         * 3*. 从输入流中拷贝内容到输入流中
         * @throws IOException
         */
        public void copyStream(InputStream is, OutputStream os) throws IOException {
            // 这个读过过程可以参阅 readToBuffer 中的注释
            String line;
            BufferedReader reader = new BufferedReader(new InputStreamReader(is));
            PrintWriter writer = new PrintWriter(new OutputStreamWriter(os));
            line = reader.readLine();
            while (line != null) {
                writer.println(line);
                line = reader.readLine();
            }
            writer.flush();     // 最后确定要把输出流中的东西都写出去了
                                // 这里不关闭 writer 是因为 os 是从外面传进来的
                                // 既然不是从这里打开的,也就不从这里关闭
                                // 如果关闭的 writer,封装在里面的 os 也就被关了
        }
        /**
         * 3. 调用 copyStream(InputStream, OutputStream) 方法拷贝文本文件
         */
        public void copyTextFile(String inFilename, String outFilename)
            throws IOException {
            // 先根据输入/输出文件生成相应的输入/输出流
            InputStream is = new FileInputStream(inFilename);
            OutputStream os = new FileOutputStream(outFilename);
            copyStream(is, os);     // 用 copyStream 拷贝内容
            is.close(); // is 是在这里打开的,所以需要关闭
            os.close(); // os 是在这里打开的,所以需要关闭
        }
        public static void main(String[] args) throws IOException {
            int sw = 1;     // 三种测试的选择开关
            AccessTextFile test = new AccessTextFile();
            
            switch (sw) {
            case 1: // 测试读
            {
                InputStream is = new FileInputStream("E:\\test.txt");
                StringBuffer buffer = new StringBuffer();
                test.readToBuffer(buffer, is);
                System.out.println(buffer);     // 将读到 buffer 中的内容写出来
                is.close();
                break;
            }
            case 2: // 测试写
            {
                StringBuffer buffer = new StringBuffer("Only a test\n");
                test.writeFromBuffer(buffer, System.out);
                break;
            }
            case 3: // 测试拷贝
            {
                test.copyTextFile("E:\\test.txt", "E:\\r.txt");
            }
                break;
            }
        }
    }
      

  2.   

    InputStreamReader中的这个函数read(char[] cbuf, int offset, int length) ,只要你能获得文件内容的字节长度就可以。