码迷,mamicode.com
首页 > 其他好文 > 详细

111

时间:2019-06-20 11:13:52      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:stream   highlight   close   ati   new   get   int   fileinput   oid   

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class IO {

    public static void main(String[] args) {
        File file = new File("data.txt");
        System.out.println("路径:"+file.getAbsolutePath());
        try {
            FileOutputStream out = new FileOutputStream(file);
            byte[] str = "12345abcdef@#%&*软件工程".getBytes();
            out.write(str);
            out.close();
        }catch(Exception e) {
            e.printStackTrace();
        }
        try {
            FileInputStream in = new FileInputStream(file);
            byte[] str1 = new byte[100];
            int length = in.read(str1);
            System.out.println("文件中的信息是:"+ new String(str1,0,length));
            in.close();
        }catch(Exception e) {
            e.printStackTrace();
        }
    }
}

  

111

标签:stream   highlight   close   ati   new   get   int   fileinput   oid   

原文地址:https://www.cnblogs.com/qq1059085674/p/11057317.html

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