java第七周周报

前言

本周是学习java的第七周,学习了File对象和IO的四大抽象类

参考教程:

W3Cschool

本周学习要点:

1.路径对象使用String类。

2.System.getProperty("user.dir")可获取用户当前项目路径。

3.File对象有三种构造器:

  • File src = new File(pathname)
  • File src = new File(String parent, child)
  • File src = new File(File parent, child)

​ 前者传入路径即可,后者需要传入两个路径,加起来等于需要路径即可。

4.对File对象调用getAbsolutePath()可以查看其绝对路径。

5.路径分绝对和相对,一般前期在windows开发,后期在部署时需要部署到linux服务器上,所以最好不要使用绝对路径,避免部署时需要修改。

6.一般可以使用双斜杠\\或反斜杠/File.separator来表示目录分隔,但双斜杠需要转义,不推荐使用。

7.对File对象使用length方法会返回文件大小(若文件存在的话)。

8.需要记住的是,File可以构建一个不存在的路径(文件)。

9.状态判断

方法 作用
.exists() 判断是否存在(前提)
.isFile() 判断是否文件
.isDirectory() 判断是否目录

10.创建文件createNewFile()(不存在才创建);删除文件delete()(存在才删除)。创建文件mkdir(),必须保证父目录存在;mkdirs(),父目录无须存在。

11.文件名,路径名的获取

方法 作用
.getName() 获取文件名
.getPath() 获取文件路径(取决于path是否绝对/相对路径)
.getAbsolutePath() 获取绝对路径
.getParent() 获取文件的上一级(取决文件的path而非绝对路径)
.getParentFile() 返回父对象(FIle对象)

12.列出下级名称和下级对象

方法 作用
.list() 列出下级名称(返回一个String数组)
.listFile() 列出下级对象(返回一个File数组)

13.一个完整的JavaBean需要对应的set,get方法和一个无参构造器(约定俗成的)。

14.四大抽象类InputStreamOutputStreamReaderWriter ,前两个可以处理字节流和字符流、后两个只能处理字符流

15.可变参数,本质是动态的创建数组

    public static int getSum(int...arr){
        int sum = 0;
        for (int i : arr) {
            sum+=i;
        }
        return sum;

16.释放资源可以使用try-with-resource(jdk7以上支持)

try(InputStream in = new FileInputStream(src); OutputStream out = new FileOutputStream(dst))

将JavaBean存储到List里面(orm思想)

public class test2 {
    public static void main(String[] args) {
        User user1 = new User(1001,"张三",20004,"2018.5.5");
        User user2 = new User(1002,"李四",20020,"2018.2.5");
        User user3 = new User(1003,"王五",20010,"2018.1.5");
        List<User> list = new ArrayList<>();
        list.add(user1);
        list.add(user2);
        list.add(user3);
        for(User u:list){
            System.out.println(u);
        }
    }
}

class User{
    private int id;
    private String name;
    private double salary;
    private String hiredate;
    
    

    public User() {
    }

    public User(int id, String name, double salary, String hiredate) {
        super();
        this.id = id;
        this.name = name;
        this.salary = salary;
        this.hiredate = hiredate;
    }
    
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public double getSalary() {
        return salary;
    }
    public void setSalary(double salary) {
        this.salary = salary;
    }
    public String getHiredate() {
        return hiredate;
    }
    public void setHiredate(String hiredate) {
        this.hiredate = hiredate;
    }
    
    @Override
    public String toString() {
        return "id:"+id+".name:"+name+".salary:"+salary+".hiredate:"+hiredate;
    }
}

使用FileInputStream读取文件

        File src = new File("io.txt");//创建源
        InputStream ips = null;
        int temp=0;
        try {
            ips = new FileInputStream(src);
            while((temp=ips.read())!=-1){
                System.out.print((char)temp);
            }
        } catch (Exception e) {
            // TODO: handle exception
        }finally {
            if(ips!=null){
                try {
                    ips.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }

        File src = new File("io.txt");
        InputStream iStream = null;
        try {
            iStream = new FileInputStream(src);
            byte[] bs = new byte[(int)src.length()];
            iStream.read(bs);
            String st = new String(bs);
            System.out.println(st);
        } catch (Exception e) {
            e.printStackTrace();
        }finally {
            if(iStream!=null){
                try {
                    iStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

OutputStream写入文件

        File src = new File("io03.txt");//创建源,不存在则自动创建
        OutputStream os = null;
        try {
            os = new FileOutputStream(src,true);//为true则为追加模式
            String mString = "io try output";
            byte[] datas = mString.getBytes();
            os.write(datas,0,datas.length);
            os.flush();
            System.out.println("wrtite string successful!");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
        catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(os!=null){
                try {
                    os.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

文件的拷贝结合写入和读取

    public static void copy(String srcPath,String detPath) {
        File src = new File(srcPath);//源文件
        File det = new File(detPath);//目标文件
        InputStream is = null;
        OutputStream os = null;
        try {
            is = new FileInputStream(src);
            os = new FileOutputStream(det);
            byte[] bt = new byte[(int)src.length()];
            is.read(bt);
            os.write(bt,0,bt.length);
            os.flush();
            System.out.println("successful!!");
        } catch (Exception e) {
            // TODO: handle exception
        }finally {
            if(is!=null||os!=null){
                try {
                    System.out.println("closing!");
                    os.close();
                    is.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
    }

使用Reader和Writer拷贝

public static void copyByReWr(String srcCopy,String detCopy) {
        File src = new File(srcCopy);
        File det = new File(detCopy);
        Reader reader = null;
        Writer writer =null;
        try {
            reader = new FileReader(src);
            writer = new FileWriter(det);
            char[] cs = new char[(int)src.length()];
            String string;
            int len=-1;
            System.out.println("The file is copying!!!");
            System.out.println("*************************");
            while((len=reader.read(cs))!=-1){
                string = new String(cs,0,len);
                writer.append(string);
            }
            writer.flush();
            System.out.println("The file copy successfully!!");
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }catch (IOException e) {
            e.printStackTrace();
        }finally {
            if(reader!=null||writer!=null){
                try {
                    writer.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
                try {
                    reader.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }
    }

将输入流输出流封装且调用

public class IOTest11 {
    public static void main(String[] args) {
        InputStream is = null;
        OutputStream os = null;
        try {
            is = new FileInputStream("io.txt");
            os = new FileOutputStream("io5.txt");
            StreamApi(is, os);
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }finally {
            if(is!=null||os!=null){
                try {
                    os.close();
                    is.close();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        }

    }   
    
    public static void StreamApi(InputStream is,OutputStream os) {
        byte[] st = new byte[1024];
        int len = -1;
        try {
            while((len=is.read(st))!=-1){
                os.write(st,0,len);
            }
            os.flush();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

传统关闭流

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

推荐阅读更多精彩内容

  • Java 语言支持的类型分为两类:基本类型和引用类型。整型(byte 1, short 2, int 4, lon...
    xiaogmail阅读 1,346评论 0 10
  • 一、基础知识:1、JVM、JRE和JDK的区别:JVM(Java Virtual Machine):java虚拟机...
    杀小贼阅读 2,373评论 0 4
  • 五、IO流 1、IO流概述 (1)用来处理设备(硬盘,控制台,内存)间的数据。(2)java中对数据的操作都是通过...
    佘大将军阅读 506评论 0 0
  • 一、Python简介和环境搭建以及pip的安装 4课时实验课主要内容 【Python简介】: Python 是一个...
    _小老虎_阅读 5,735评论 0 10
  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,380评论 0 5