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

创建文件,写文件

时间:2020-10-06 21:07:30      阅读:42      评论:0      收藏:0      [点我收藏+]

标签:throw   pre   get   col   tput   nbsp   gbk   stream   exce   

import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import java.util.Arrays;

public class Demo02OutPutStream {
    public static void main(String[] args) throws IOException {
        FileOutputStream fos=new FileOutputStream("F:\\basic\\untitled13\\src\\it\\cast\\day15\\demo01\\2.txt");
        fos.write(49);//写入100
        fos.write(48);
        fos.write(48);

        //一次写多个,如果第一个字节是正数,会查询ascll表
        //如果第一个是负数,那第一个字节会和第二个字节,两个字节组成一个中文显示,查询系统默认码表。GBK
        byte[] bytes={65,66,67,68,69};
        fos.write(bytes,1,2);//BC
        byte[] bytes1={-65,-66,-67,68,69};
        fos.write(bytes1);
        byte[] bytes2 = "你好".getBytes();
        System.out.println(Arrays.toString(bytes2));
        fos.write(bytes2);

        fos.close();
    }
}

 

import java.io.FileOutputStream;
import java.io.IOException;

public class Demo01OutPutStream  {
    public static void main(String[] args) throws IOException {
        //创建文件
        FileOutputStream fos=new FileOutputStream("F:\\basic\\untitled13\\src\\it\\cast\\day15\\demo01\\1.txt");
        fos.write(97);//写入二进制数转换成ascll码表
        fos.close();//释放内存空间
    }
}

 

创建文件,写文件

标签:throw   pre   get   col   tput   nbsp   gbk   stream   exce   

原文地址:https://www.cnblogs.com/cy2268540857/p/13773426.html

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