0069 练习

该博客展示了如何使用Java进行文件操作,包括创建目录、文件及写入内容,以及检查文件是否存在。此外,还涉及了如何读取文本文件并标上行号。接着,博客演示了如何创建和读取属性文件,初始化对象并实现序列化到文件。最后,通过反序列化恢复对象。
摘要由CSDN通过智能技术生成

 

 

 

 

 

 

 

 

 

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
/*
    判断D盘下是否有文件夹temp,如果没有则创建temp
    在D盘temp文件夹下创建文件 hello.txt, 并写入hello,java
    如果hello.txt已存在,提示该文件已存在
 */
public class Test01 {
    public static void main(String[] args) throws IOException {
        String directoryPath = "d:\\temp";
        File file = new File(directoryPath);
        if (!file.exists()){//如果没有则创建temp
            if (file.mkdirs()){
                System.out.println(directoryPath + "创建成功");
            }else{
                System.out.println(directoryPath + "创建失败");
            }
        }
        String filePath = directoryPath + "\\hello.txt";//  "d:\\temp\\hello.txt"
        file = new File(filePath);
        if (!file.exists()){
            if (file.createNewFile()){
                System.out.println(filePath + "创建成功");
                //写入内容
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(file));
                bufferedWriter.write("hello,java");
                //关闭流
                bufferedWriter.close();
            }else{
                System.out.println(filePath + "创建失败");
            }
        }else{
            System.out.println(file + "文件已存在");
        }
    }
}
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

//  使用BufferedReader读取文本文件test1.txt,并标上行号
public class Test02 {
    public static void main(String[] args) throws IOException {
        String filePath = "d:\\test1.txt";
        BufferedReader br = null;
        String line = "";
        int count = 0;//行号
        try {
            br = new BufferedReader(new FileReader(filePath));
            while ((line = br.readLine()) != null){
                System.out.println(++count + "\t" + line);
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } finally {
            if (br != null){
                br.close();
            }
        }
    }
}
import org.junit.jupiter.api.Test;
import java.io.*;
import java.util.Properties;
/*
    编写一个dog.properties 属性为  name=jack;  age=6;  color=black;
    编写Dog类(name,age,color),创建一个dog对象,读取dog.properties,完成属性初始化并输出
    将创建的dog对象序列化到文件dog.dat文件中
    编写一个方法反序列化dog
 */
public class Test03 {
    public static void main(String[] args) throws IOException {
        String filePath = "src\\dog.properties";
        Properties properties = new Properties();
        properties.load(new FileReader(filePath));
        String name = properties.get("name") + "";// Object-->String( + "")
        int age = Integer.parseInt(properties.get("age") + "");// Object-->int
        String color = properties.get("color") + "";// Object-->String

        Dog dog = new Dog(name, age, color);
        System.out.println(dog);

        //创建的dog对象序列化到文件dog.dat文件中(注意实现接口)
        String serFilePath = "d:\\dog.dat";
        ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(serFilePath));
        oos.writeObject(dog);
        //关闭流
        oos.close();
        System.out.println("序列化完成");
    }
    //反序列化
    @Test
    public void m() throws IOException, ClassNotFoundException {
        String serFilePath = "d:\\dog.dat";
        ObjectInputStream ois = new ObjectInputStream(new FileInputStream(serFilePath));
        Dog dog = (Dog)ois.readObject();
        System.out.println(dog);
        ois.close();//关流
    }
}

class Dog implements Serializable {//序列化实现接口
    private String name;
    private int age;
    private String color;

    public Dog(String name, int age, String color) {
        this.name = name;
        this.age = age;
        this.color = color;
    }

    @Override
    public String toString() {
        return "Dog{" +
                "name='" + name + '\'' +
                ", age=" + age +
                ", color='" + color + '\'' +
                '}';
    }
}

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

nzmzmc

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值