1.创建文件

  1. // 引入包
  2. import java.io.File;
  3. // 引入异常监听
  4. import java.io.IOException;
  5. public class HelloWorld{
  6. // 入口
  7. public static void main(String []args) throws IOException {
  8. // 设置文件路径
  9. String path = "demo"+File.separator+"test.log";
  10. // 设置路径
  11. File file = new File(path);
  12. // 创建文件
  13. boolean res = file.createNewFile();
  14. System.out.println(res);
  15. }
  16. }

2.判断文件是否存在

  1. // 引入包
  2. import java.io.File;
  3. public class HelloWorld{
  4. // 入口
  5. public static void main(String []args){
  6. // 设置文件路径
  7. String path = "demo"+File.separator+"test.log";
  8. // 设置路径
  9. File file = new File(path);
  10. // 判断文件是否存在
  11. if (file.exists()) {
  12. System.out.println("Yes");
  13. } else {
  14. System.out.println("No");
  15. }
  16. }
  17. }

3.修改文件

修改文件名称,直接使用跟目录重命名一样的File.renameTo()方法即可。

4.删除文件

删除文件,直接使用跟目录删除一样的File.delete()方法即可。

5.获取文件是否可读写

  1. // 引入包
  2. import java.io.File;
  3. public class HelloWorld{
  4. // 入口
  5. public static void main(String []args){
  6. // 设置文件路径
  7. String path = "demo"+File.separator+"test.log";
  8. // 设置路径
  9. File file = new File(path);
  10. // 是否可读
  11. boolean bool1 = file.canRead();
  12. // 是否可写
  13. boolean bool2 = file.canWrite();
  14. System.out.println(bool1);
  15. System.out.println(bool2);
  16. }
  17. }

6.设置文件权限

  1. // 引入包
  2. import java.io.File;
  3. public class HelloWorld{
  4. // 入口
  5. public static void main(String []args){
  6. // 设置文件路径
  7. String path = "demo"+File.separator+"test.log";
  8. // 设置路径
  9. File file = new File(path);
  10. //设置可执行权限
  11. boolean bool1 = file.setExecutable(true);
  12. //将文件设定为可写
  13. boolean bool2 = file.setWritable(true);
  14. //将文件设定为可读
  15. boolean bool3 = file.setReadable(true);
  16. //将文件设定为只读
  17. boolean bool4 = file.setReadOnly();
  18. System.out.println(bool1);
  19. System.out.println(bool2);
  20. System.out.println(bool3);
  21. System.out.println(bool4);
  22. }
  23. }

7.复制文件

  1. // 引入包
  2. import java.io.File;
  3. // 引入文件操作包
  4. import java.nio.file.Files;
  5. // 引入异常类
  6. import java.io.IOException;
  7. public class HelloWorld{
  8. // 入口
  9. public static void main(String []args) throws IOException {
  10. // 设置A文件路径
  11. String pathA = "demo"+File.separator+"test.log";
  12. // 设置路径
  13. File fileA = new File(pathA);
  14. // 设置B文件路径
  15. String pathB = "demo"+File.separator+"demo.log";
  16. // 设置路径
  17. File fileB = new File(pathB);
  18. //复制文件
  19. Object path = Files.copy(fileA.toPath(), fileB.toPath());
  20. // 成功返回文件的路径,但却是个对象类型,不知道为啥
  21. System.out.println(path);
  22. }
  23. }

8.写入文件

  1. // 引入包
  2. import java.io.File;
  3. // 引入文件内容操作包
  4. import java.io.FileOutputStream;
  5. // 引入异常类
  6. import java.io.IOException;
  7. public class HelloWorld{
  8. // 入口
  9. public static void main(String []args) throws IOException {
  10. // 设置A文件路径
  11. String path = "demo"+File.separator+"A2.log";
  12. // 设置路径
  13. File file = new File(path);
  14. // 第二个参数可追加true参数,表示在原有文件末尾追加信息
  15. FileOutputStream outputStream = new FileOutputStream(file, true);
  16. // 自动接上换行符
  17. String data = "Hello javaFile"+System.lineSeparator();
  18. // 写入文件[返回值是null]
  19. outputStream.write(data.getBytes());
  20. // 数据全部送出
  21. outputStream.flush();
  22. // 然后再关闭文件流
  23. outputStream.close();
  24. }
  25. }

注意:如果文件不存在,也会自动帮忙创建文件的哦,但需要目录有写入权限。

9.读取文件

文件读取操作大致可分为二进制文件读取、文本文件读取。

二进制的文件读取我们以后有机会再说下。这次先学习下文本文件的读取。

读取又可以分为字节读取、按行读取、和一次性读取。

下面我们先来看下按字节读取

  1. // 引入包
  2. import java.io.File;
  3. // 引入文件内容操作包
  4. import java.io.FileInputStream;
  5. import java.io.InputStreamReader;
  6. // 引入异常类
  7. import java.io.IOException;
  8. // 字节流
  9. import java.io.Reader;
  10. public class HelloWorld{
  11. // 入口
  12. public static void main(String []args) throws IOException {
  13. // 设置A文件路径
  14. String path = "demo"+File.separator+"A2.log";
  15. // 设置路径
  16. File file = new File(path);
  17. //以字符为单位读取文件
  18. Reader read = null;
  19. try {
  20. // 一次读一个字符
  21. read = new InputStreamReader(new FileInputStream(file));
  22. int tempchar;
  23. while((tempchar=read.read())!=-1) {
  24. //在Windows下,rn这两个字符在一起时,表示一个换行。
  25. //但如果这两个字符分开显示,会换两次行。
  26. //因此,屏蔽掉r,或者屏蔽n。否则,将会多出很多空行。
  27. if(((char)tempchar)!='r') {
  28. //只要是不换行就读取
  29. System.out.print((char)tempchar);
  30. }
  31. }
  32. // 关闭文件流
  33. read.close();
  34. } catch(Exception e) {
  35. e.printStackTrace();
  36. } finally {
  37. //内容总执行
  38. if (read != null) {
  39. try {
  40. // 这一步判断,牛逼
  41. read.close(); //确保关闭
  42. }catch (IOException el) {
  43. }
  44. }
  45. }
  46. }
  47. }

按行读取

  1. // 引入包
  2. import java.io.File;
  3. // 引入异常类
  4. import java.io.IOException;
  5. // 引入操作相关类
  6. import java.io.FileInputStream;
  7. import java.nio.ByteBuffer;
  8. import java.nio.channels.FileChannel;
  9. public class HelloWorld{
  10. // 入口
  11. public static void main(String []args) throws IOException {
  12. // 设置A文件路径
  13. String path = "demo"+File.separator+"A2.log";
  14. // 分配一个新的字节缓冲区。
  15. ByteBuffer rbuf = ByteBuffer.allocate(1024);
  16. // 创建path文件的文件字节输入流
  17. FileInputStream fileInputStream = new FileInputStream(path);
  18. // 获取通道
  19. FileChannel fileChannel = fileInputStream.getChannel();
  20. // 获取此通道文件的当前大小,作为文件结束位置
  21. long endIndex = fileChannel.size();
  22. // 当前处理字节所在位置
  23. long endLineIndex = 0;
  24. // 用于判断数据是否读取完
  25. boolean isEnd = false;
  26. // 换行符,目前需手动指定
  27. int CF = System.lineSeparator().getBytes()[0];
  28. // 设置字符串编码
  29. String encoding = "utf-8";
  30. // 循环读取通道中的数据并放入rbuf中
  31. byte[] temp = new byte[0];
  32. while (fileChannel.read(rbuf) != -1) {
  33. // 创建与rbuf容量一样大的数组
  34. byte[] rbyte = new byte[rbuf.position()];
  35. // 读/写指针position指到缓冲区头部,并设置了最大读取长度
  36. rbuf.flip();
  37. // 将rbuf中的数据传输到rbyte中
  38. rbuf.get(rbyte);
  39. // 每行的起始位下标,相当于当前所读取到的byte数组
  40. int startNum = 0;
  41. // 循环读取rbyte,判断是否有换行符
  42. for (int i = 0; i<rbyte.length; i++) {
  43. endLineIndex++;
  44. // 当存在换行符时
  45. if (rbyte[i]== CF) {
  46. // 创建临时数组用于保存整行数据
  47. byte[] line = new byte[temp.length + i - startNum +1];
  48. // 将上次读取剩下的部分存入line
  49. System.arraycopy(temp, 0, line, 0, temp.length);
  50. // 将读取到的当前rbyte中的数据追加到line
  51. System.arraycopy(rbyte,startNum, line, temp.length, i- startNum +1);
  52. // 更新下一行起始位置
  53. startNum = i + 1;
  54. // 初始化temp数组
  55. temp = new byte[0];
  56. // 处理数据,此时line即为要处理的一整行数据
  57. String lineStr = new String(line, encoding);
  58. // 抓到每行的内容啦
  59. System.out.print(lineStr);
  60. }
  61. }
  62. rbuf.clear();
  63. }
  64. // 关闭通道
  65. fileChannel.close();
  66. }
  67. }

一次性读取

  1. // 引入包
  2. import java.io.File;
  3. // 引入异常类
  4. import java.io.FileInputStream;
  5. import java.io.IOException;
  6. public class HelloWorld{
  7. // 入口
  8. public static void main(String []args) throws IOException {
  9. // 设置文件路径
  10. String path = "demo"+File.separator+"A2.log";
  11. // 设置编码
  12. String encoding = "UTF-8";
  13. // 打开操作
  14. File file = new File(path);
  15. // 内容长度
  16. Long filelength = file.length();
  17. // 一次性创建一个大数组
  18. byte[] filecontent = new byte[filelength.intValue()];
  19. try {
  20. // 直接打开文件
  21. FileInputStream in = new FileInputStream(file);
  22. // 所有内容全部刷入
  23. in.read(filecontent);
  24. // 关闭文件流
  25. in.close();
  26. // 转成字符串
  27. String txt = new String(filecontent, encoding);
  28. System.out.print(txt);
  29. } catch (IOException e) {
  30. e.printStackTrace();
  31. }
  32. }
  33. }

10.文件的其他操作

  1. // 引入包
  2. import java.io.File;
  3. import java.text.SimpleDateFormat;
  4. public class HelloWorld{
  5. // 入口
  6. public static void main(String []args){
  7. // 设置文件路径
  8. String path = "demo"+File.separator+"A2.log";
  9. // 设置路径
  10. File file = new File(path);
  11. // 获取文件大小
  12. System.out.println("读取文件大小"+file.length()+"byte");
  13. // 获取文件修改时间
  14. long lastModified = file.lastModified();
  15. SimpleDateFormat dateFormat = new SimpleDateFormat("YYYY-MM-dd HH:mm:ss");
  16. System.out.println("修改时间"+ dateFormat.format(lastModified));
  17. // 获取文件名称
  18. // 这是路径截取的方法
  19. String fileNameNow = path.substring(path.lastIndexOf("\\")+1);
  20. // 这是file实例拿到的
  21. String fileName = file.getName();
  22. System.out.println("获取文件名称"+ fileName+" OR "+fileNameNow);
  23. // 获取文件后缀
  24. String suffix = fileName.substring(fileName.lastIndexOf(".") + 1);
  25. System.out.println("获取文件后缀"+ suffix);
  26. // 是否隐藏文件
  27. System.out.println("判断文件是否被隐藏"+file.isHidden());
  28. }
  29. }