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

java中I/O流问题

时间:2016-10-24 20:48:26      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:cep   stat   file   test   fileinput   string   public   ati   []   

public class InputStreamTest {
    public static void main(String[] args) throws IOException {
        /**
         * 字节流
         * 读文件内容
         * */  
        String st="d:"+File.separator+"java8.txt";
        File f=new File(st);
        InputStream is=new FileInputStream(f);
        byte[] b=new byte[1024];
        is.read(b);
        is.close();
        System.out.println(new String(b));
        
    }

System.out.println(new String(b));这句代码怎么理解

java中I/O流问题

标签:cep   stat   file   test   fileinput   string   public   ati   []   

原文地址:http://www.cnblogs.com/ly1996/p/5994143.html

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