io编程

http://www.51gjie.com/java/77

  • 创建文件和目录
在当前工程工作路径下创建文件和文件夹 

  // create file
        File file = new File("hello.txt");
        try {
            file.createNewFile();
        } catch (IOException e) {


        }

        // create dir
        File files = new File("files");
        files.mkdir();

        // 创建多级目录
        File file1 = new File("parent/imgs");
        file1.mkdirs();

在指定目录下创建文件, 
目录必须要已经存在的, 
否则将抛出 异常
java.io.IOException: No such file or directory


 // :
路径分隔符
        System.out.println(File.pathSeparator);
        System.out.println(File.pathSeparatorChar);


        // / 
默认名称分隔符
        System.out.println(File.separator);
        System.out.println(File.separatorChar);


 // 获取文件列表
        File file2 = new File("/Users/benjamin/IntelliJIdeaProjects/IO/");
        File[] listFiles = file2.listFiles();

  • 字节流读取
单纯的字节流读取, 并把读取的字节流存储到一个字节数组中 

// 限制在1kb大小的数组内
        // Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1024
        File file3 = new File("hello.txt");
        // bytes
        long length = file3.length();
        
        try {
            FileInputStream in = new FileInputStream(file3);
            byte[] b = new byte[1024];
            int len = 0;
            int temp = 0; //全部读取的内容都使用temp接收
            // 每次循环读取1个字节, 用temp临时存储读取得到的1个字节
            while ((temp = in.read()) != -1) { //当没有读取完时,继续读取
                // 把读取到的字节放到 字节数组b
                b[len] = (byte) temp;
                len++;
            }
            in.close();
            System.out.println(new String(b, 0, len));

        } catch (IOException e) {
            e.printStackTrace();
        }


FileInputStream 从内存中读出数据到byte[]中然后,使用FileOutputStream写入文件中。

       FileInputStream fis = null;
         FileOutputStream fos = null;

        try {
            fis = new FileInputStream("hello.txt");

            fos = new FileOutputStream("b.txt");
            
            
            byte[] bytes = new byte[1024];

            while ((fis.read(bytes)) != -1) {
                fos.write(bytes);// 写入数据
            }
            
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            // 关闭流
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }

                if (fos != null) {
                    try {
                        fos.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
            
        }

  • 写入字节流

flush()
OutputStream的flush()方法将所有写入到OutputStream的数据冲刷到相应的磁盘中。比如,如果输出流是FileOutputStream,那么写入到其中的数据可能并没有真正写入到磁盘中。即使所有数据都写入到了FileOutputStream,这些数据还是有可能保留在内存的缓冲区中。通过调用flush()方法,可以把缓冲区内的数据刷新到磁盘(或者网络,以及其他任何形式的目标媒介)中。

close()
当你结束数据写入时,需要关闭OutputStream。通过调用close()可以达到这一点。因为OutputStream的各种write()方法可能会抛出IO异常,所以你需要把调用close()的关闭操作方在finally块中执行。

  • 不管流是不是被自动关闭, 我们都要在finally里手动关闭下

http://www.javapractices.com/topic/TopicAction.do?Id=8

https://docs.oracle.com/javase/7/docs/technotes/guides/language/try-with-resources.html

单纯的写入字节流

  // 第1步、使用File类找到一个文件
        File file3 = new File("hello2.txt");    // 声明File对象
        // 第2步、通过子类实例化父类对象
        FileOutputStream out = null;
        try {
            out = new FileOutputStream(file3);

            // 第3步、进行写操作
            String str = "Hello World!!!";        // 准备一个字符串
            byte[] bytes = str.getBytes();            // 只能输出byte数组,所以将字符串变为byte数组
            out.write(bytes);                        // 将内容输出,保存文件


        } catch (IOException e) {
            e.printStackTrace();
        }finally {

            // 把输出字节流关了
            if (out != null) {
                try {
                    out.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }



读取并写入字节字节流
 FileInputStream fis = null;
         FileOutputStream fos = null;

        try {
            fis = new FileInputStream("hello.txt");

            fos = new FileOutputStream("b.txt");
            
            
            byte[] bytes = new byte[1024];

            while ((fis.read(bytes)) != -1) {
                fos.write(bytes);// 写入数据
            }
            
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            // 关闭流
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }

                if (fos != null) {
                    try {
                        fos.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
            
        }

  • try-catch-finall

https://www.ibm.com/developerworks/cn/java/j-lo-finally/

只有与 finally 相对应的 try 语句块得到执行的情况下,finally 语句块才会执行。

The finally Block

The finally block always executes when the try block exits. This ensures that the finally block is executed even if an unexpected exception occurs. But finally is useful for more than just exception handling — it allows the programmer to avoid having cleanup code accidentally bypassed by a return,continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions are anticipated.

这句话是说, 不管是否出现异常, finally 语句一定会执行的,
即便是 在 try语句中执行了 方法的return 操作,
finally也还是会执行的, 所以 finally可以执行一些方法返回后的对代码的清空操作, 比如关闭流的操作。

public class Test {
    public static void main(String[] args) {
        System.out.println("return value of test(): " + test());
    }

    public static int test() {
        int i = 1;

        try {
            System.out.println("try block");
            return i;
        } finally {
            System.out.println("finally block");
        }
    }
}

打印:

try block
finally block
return value of test(): 1


Note: If the JVM exits while the try or catch code is being executed, then the finally block may not execute. Likewise, if the thread executing the try or catch code is interrupted or killed, the finally block may not execute even though the application as a whole continues.

这段话是说, 在 try和catch语句块中执行了虚拟机退出或者 线程终止也会导致finally语句不会执行。

删除文件和文件夹

  • 删除文件
删除一个单独的文件

File file3 = new File("b.txt");
        if (file3.exists()) {
            file3.delete();
        }


    /**
     * Delete a file or a directory and its children.
     * @param file The directory to delete.
     * @throws IOException Exception when problem occurs during deleting the directory.
     */
    private static void delete(File file) throws IOException {

        for (File childFile : file.listFiles()) {

            if (childFile.isDirectory()) {
                delete(childFile);
            } else {
                if (!childFile.delete()) {
                    throw new IOException();
                }
            }
        }

        if (!file.delete()) {
            throw new IOException();
        }
    }

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,634评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,951评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,427评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,770评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,835评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,799评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,768评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,544评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,979评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,271评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,427评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,121评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,756评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,375评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,579评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,410评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,315评论 2 352

推荐阅读更多精彩内容

  • IO编程概念 IO在计算机中指Input/Output,也就是输入和输出。由于程序和运行时数据是在内存中驻留,由C...
    时间之友阅读 723评论 0 0
  • IO在计算机中是指input/output,也就是输入和输出。由于程序和运行时数据是在内存中驻留,由CPU这个超快...
    Sun_atom阅读 1,698评论 0 0
  • 阿超想要逃离这个城市,以前脑海里也蹦出过这个念头,但这次突如其来的强烈感让他恶心。这种感觉好比回流的马桶。阿超从来...
    埃尔_e8f8阅读 192评论 0 2
  • 今年九月,如愿,工作两年后,回归到大学校园,继续我乐此不疲的青春。 参加工作两年之后,心境相较于毕业之时,确有很大...
    深蓝雨阅读 866评论 0 3
  • 云幕低垂曲径长, 雪枝斜挂莽原荒。 谁曾感念移温室? 瘦尽西风碧四方!
    素雪妖娆阅读 226评论 0 0