码迷,mamicode.com
首页 > 编程语言 > 详细

ThinkJava-输入和输出

时间:2017-09-02 22:31:59      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:cep   out   hid   gif   stat   readline   使用   throw   []   

1/0流的典型使用方式
 
1.缓冲输入文件
技术分享
package com.java.io;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;

public class BufferedInputFile {
    public static String read(String pathname) throws IOException {
        BufferedReader in = new BufferedReader(new FileReader(new File(pathname)));
        String s;
        StringBuilder sb = new StringBuilder();
        while((s = in.readLine())!=null){
            sb.append(s + "\n") ;
        }
        in.close();
        return sb.toString();
    }
    
    public static void main(String[] args) throws IOException {
        System.out.print(read("src/com/java/io/BufferedInputFile.java"));
    }
}
View Code

console将当前的BufferedInputFile.java文件原封不动的打印出来;

 

 

ThinkJava-输入和输出

标签:cep   out   hid   gif   stat   readline   使用   throw   []   

原文地址:http://www.cnblogs.com/tenWood/p/7468041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!