标签: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