BIO
Be_With_I
这个作者很懒,什么都没留下…
展开
-
003BIO的基本使用
引入了转换 package in; import java.io.*; public class MyTransStream { public static void main(String[] args) throws Exception { // read001(); // read002(); // read003(); read004(); } private static void read004(原创 2020-06-29 22:26:16 · 205 阅读 · 0 评论 -
002BIO中的基本使用
需注意gb2312和GBK都是兼容ascii编码的。也就是说gbk包含了ascii中的字符映射。原创 2020-06-29 22:23:03 · 179 阅读 · 0 评论 -
001BIO的基本使用
对流的理解 package io; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; public class MyIO { public static void main(String[] args) throws Exception { // writer001(); //原创 2020-06-26 23:07:24 · 231 阅读 · 0 评论