Java--File文件操作

判断文件或目录是否存在

判断File对象所指向的文件或者目录是否存在,使用exists()函数。

File f = new File("/Users/bemaster/Desktop/in.txt");
System.out.println(f.exists());

 

 

判断当前File对象是文件还是目录

判断当前File对象是否是文件,使用isFile()函数。

判断当前File对象是否是目录,使用isDirectory()函数。

File f = new File("/Users/bemaster/Desktop/in.txt");
File f2 = new File("/Users/bemaster/Desktop/in.txt");
if(f.isFile())System.out.println("is file!!!");
if(f2.isDirectory())System.out.println("is directory!!!");

 

 

新建文件或目录

新建文件,使用createNewFile()函数

File f = new File("/Users/bemaster/Desktop/in.txt");
try {if(!f.exists())f.createNewFile();
} catch (IOException e) {
// TODO Auto-generated catch block
    e.printStackTrace();
}

 

新建目录,使用mkdir()或者mkdirs()函数。区别是前者是新建单级目录,而后者是新建多级目录。

即如果新建目录时,如果上一级目录不存在,那么mkdir()是不会执行成功的。

/*如果User目录,或者bemaster目录,或者Desktop目录不存在,
* 如果使用mkdir(),则新建tmp目录失败
* 如果使用mkdirs(),则连不存在的上级目录一起新建
*/
File f = new File("/Users/bemaster/Desktop/tmp");
if(!f.exists())f.mkdir();

 

 

获取当前目录下的所有文件

list()函数返回当前目录下所有文件或者目录的名字(即相对路径)。

listFiles()函数返回当前目录下所有文件或者目录的File对象。

很显然,list()函数效率比较高,因为相比于listFiles()函数少了一步包装成File对象的步骤。

上面的两个函数都有另外一个版本,可以接受一个过滤器,即返回那么满足过滤器要求的。

public String[] list();
public String[] list(FilenameFilter filter);
public File[] listFiles();
public File[] listFiles(FileFilter filter);
public File[] listFiles(FilenameFilter filter);

 

 

删除文件或目录

删除文件或目录都是使用delete(),或者deleteOnExit()函数,但是如果目录不为空,则会删除失败。

delete()和deleteOnExit()的区别是前者立即删除,而后者是等待虚拟机退出时才删除。

File f = new File("/Users/bemaster/Desktop/in.txt");
f.delete();

如果想要删除非空的目录,则要写个函数递归删除。

/*** *<删除文件或者目录,如果目录不为空,则递归删除* @param file filepath 你想删除的文件* @throws FileNotFoundException 如果文件不存在,抛出异常* */public static void delete(File file) throws FileNotFoundException {if(file.exists()){File []fileList=null;//如果是目录,则递归删除该目录下的所有东西if(file.isDirectory() && (fileList=file.listFiles()).length!=0){for(File f:fileList)delete(f);}//现在可以当前目录或者文件了
            file.delete();}else{throw new FileNotFoundException(file.getAbsolutePath() + "is not exists!!!");}}

 

 

重命名(移动)文件或目录

重命名文件或目录是使用renameTo(File)函数,如果想要移动文件或者目录,只需要改变其路径就可以做到。

File f = new File("/Users/bemaster/Desktop/in.txt");
f.renameTo(new File("/Users/bemaster/Desktop/in2.txt"));

 

 

复制文件或目录

File类不提供拷贝文件或者对象的函数,所以需要自己实现。

/*** through output write the byte data which read from input  * 将从input处读取的字节数据通过output写到文件* @param input* @param output* @throws IOException*/private static void copyfile1(InputStream input, OutputStream output) {byte[] buf = new byte[1024];int len;try {while((len=input.read(buf))!=-1){output.write(buf, 0, len);}} catch (IOException e) {e.printStackTrace();}finally{try {input.close();output.close();} catch (IOException e) {e.printStackTrace();}}}public static void copyFile(String src, String des, boolean overlay) throws FileNotFoundException{copyFile(new File(src), new File(des), overlay);}/*** * @param src 源文件* @param des 目标文件* @throws FileNotFoundException */public static void copyFile(File src, File des, boolean overlay) throws FileNotFoundException {FileInputStream fis = null;FileOutputStream fos = null;BufferedInputStream bis = null;BufferedOutputStream bos = null;if(src.exists()){try {fis = new FileInputStream(src);bis = new BufferedInputStream(fis);boolean canCopy = false;//是否能够写到desif(!des.exists()){des.createNewFile();canCopy = true;}else if(overlay){canCopy = true;}if(canCopy){fos = new FileOutputStream(des);bos = new BufferedOutputStream(fos);copyfile1(bis, bos);}} catch (FileNotFoundException e) {// TODO Auto-generated catch block
                e.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch block
                e.printStackTrace();}}else{throw new FileNotFoundException(src.getAbsolutePath()+" not found!!!");}}public static void copyDirectory(String src, String des) throws FileNotFoundException{copyDirectory(new File(src), new File(des));}public static void copyDirectory(File src, File des) throws FileNotFoundException{if(src.exists()){if(!des.exists()){des.mkdirs();}File[] fileList = src.listFiles();for(File file:fileList){//如果是目录则递归处理if(file.isDirectory()){copyDirectory(file, new File(des.getAbsolutePath()+"/"+file.getName()));}else{//如果是文件,则直接拷贝copyFile(file, new File(des.getAbsolutePath()+"/"+file.getName()), true);}}}else{throw new FileNotFoundException(src.getAbsolutePath()+" not found!!!");}}

 

 

获得当前File对象的绝对路径和名字

File f = new File("/Users/bemaster/Desktop/in.txt");
//输出绝对路径, 即/Users/bemaster/Desktop/in.txt
System.out.println(f.getAbsolutePath());
//输出父目录路径, 即/Users/bemaster/Desktop/
System.out.println(f.getParent());
//输出当然文件或者目录的名字, 即in.txt
System.out.println(f.getName());

 

 

统计文件或者目录大小

获得文件的大小可以使用length()函数。
File f = new File("/Users/bemaster/Desktop/in.txt");
System.out.println(f.length());

 

如果对目录使用length()函数,可能会返回错误的结果,所以只好自己写个函数递归统计其包含的文件的大小。

private static long getTotalLength1(File file){long cnt = 0;if(file.isDirectory()){File[] filelist = file.listFiles();for(File f : filelist){cnt += getTotalLength1(f);}}else{cnt += file.length();}return cnt;}public static long getTotalLength(String filepath) throws FileNotFoundException{return  getTotalLength(new File(filepath));}public static long getTotalLength(File file) throws FileNotFoundException{if(file.exists()){return getTotalLength1(file);}else{throw new FileNotFoundException(file.getAbsolutePath()+" not found!!!");}}

 

 

其它函数

File类所提供的函数当前不止这些,还有一些操作,比如获得文件是否可读,可写,可操作;设置文件可读,可写,可操作等等。

 

FileUtil工具类

下面是自己写的FileUtil工具类。

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.ServerSocket;/*** * @author bemaster;* @category 文件工具类,包含了基本的文件操作* @version 1.0* */public class FileUtil {private static final long B = 1;private static final long K = B<<10;private static final long M = K<<10;private static final long G = M<<10;private static final long T = G<<10;/*** *删除文件或者目录,如果目录不为空,则递归删除* @param filepath 你想删除的文件的路径* @throws FileNotFoundException 如果该路径所对应的文件不存在,抛出异常* */public static void delete(String filepath) throws FileNotFoundException{File file = new File(filepath);delete(file);}/*** *<删除文件或者目录,如果目录不为空,则递归删除* @param file filepath 你想删除的文件* @throws FileNotFoundException 如果文件不存在,抛出异常* */public static void delete(File file) throws FileNotFoundException {if(file.exists()){File []fileList=null;//如果是目录,则递归删除该目录下的所有东西if(file.isDirectory() && (fileList=file.listFiles()).length!=0){for(File f:fileList)delete(f);}//现在可以当前目录或者文件了
            file.delete();}else{throw new FileNotFoundException(file.getAbsolutePath() + "is not exists!!!");}}/*** through output write the byte data which read from input  * 将从input处读取的字节数据通过output写到文件* @param input* @param output* @throws IOException*/private static void copyfile1(InputStream input, OutputStream output) {byte[] buf = new byte[1024];int len;try {while((len=input.read(buf))!=-1){output.write(buf, 0, len);}} catch (IOException e) {e.printStackTrace();}finally{try {input.close();output.close();} catch (IOException e) {e.printStackTrace();}}}public static void copyFile(String src, String des, boolean overlay) throws FileNotFoundException{copyFile(new File(src), new File(des), overlay);}/*** * @param src 源文件* @param des 目标文件* @throws FileNotFoundException */public static void copyFile(File src, File des, boolean overlay) throws FileNotFoundException {FileInputStream fis = null;FileOutputStream fos = null;BufferedInputStream bis = null;BufferedOutputStream bos = null;if(src.exists()){try {fis = new FileInputStream(src);bis = new BufferedInputStream(fis);boolean canCopy = false;//是否能够写到desif(!des.exists()){des.createNewFile();canCopy = true;}else if(overlay){canCopy = true;}if(canCopy){fos = new FileOutputStream(des);bos = new BufferedOutputStream(fos);copyfile1(bis, bos);}} catch (FileNotFoundException e) {// TODO Auto-generated catch block
                e.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch block
                e.printStackTrace();}}else{throw new FileNotFoundException(src.getAbsolutePath()+" not found!!!");}}public static void copyDirectory(String src, String des) throws FileNotFoundException{copyDirectory(new File(src), new File(des));}public static void copyDirectory(File src, File des) throws FileNotFoundException{if(src.exists()){if(!des.exists()){des.mkdirs();}File[] fileList = src.listFiles();for(File file:fileList){//如果是目录则递归处理if(file.isDirectory()){copyDirectory(file, new File(des.getAbsolutePath()+"/"+file.getName()));}else{//如果是文件,则直接拷贝copyFile(file, new File(des.getAbsolutePath()+"/"+file.getName()), true);}}}else{throw new FileNotFoundException(src.getAbsolutePath()+" not found!!!");}}public static String toUnits(long length){String sizeString = "";if(length<0){length = 0;}if(length>=T){sizeString = sizeString +  length / T + "T"  ;length %= T;}if(length>=G){sizeString = sizeString + length / G + "G" ;length %= G;}if(length>=M){sizeString = sizeString + length / M + "M";length %= M;}if(length>=K){sizeString = sizeString + length / K+ "K";length %= K;}if(length>=B){sizeString = sizeString + length / B+ "B";length %= B;}return sizeString;        }private static long getTotalLength1(File file){long cnt = 0;if(file.isDirectory()){File[] filelist = file.listFiles();for(File f : filelist){cnt += getTotalLength1(f);}}else{cnt += file.length();}return cnt;}public static long getTotalLength(String filepath) throws FileNotFoundException{return  getTotalLength(new File(filepath));}public static long getTotalLength(File file) throws FileNotFoundException{if(file.exists()){return getTotalLength1(file);}else{throw new FileNotFoundException(file.getAbsolutePath()+" not found!!!");}}
}    

 

转载于:https://www.cnblogs.com/justPassBy/p/5342436.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/573791.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

iis 装完framework4 7 无法切换_扫盲贴之电压并列与电压切换

点击上方电气小青年&#xff0c;关注并星标由于微信改版&#xff0c;只有星标才能及时看到我们的消息哦━━━━━━推荐阅读&#xff1a;《国内电气顶尖高校的奖学金介绍&#xff0c;总奖学金接近150万&#xff01;》《世界工业自动化公司行业前十名&#xff1a;西门子、ABB、…

unixbench类似_UnixBench的实现介绍-阿里云开发者社区

很多用户都用UnixBench做性能测试&#xff0c;并做厂商之间的对比&#xff0c;那UnixBench到底做了哪些性能测试&#xff0c;本篇从代码层面阐述UnixBench做了哪些测试。在细说UnixBench的实现之前&#xff0c;先放一个总结果UnixBench算分介绍有类似结果&#xff0c;然后一个个…

android 集成同一interface不同泛型_C# 基础知识系列- 10 反射和泛型(二)

0. 前言 这篇文章延续《C# 基础知识系列- 5 反射和泛型》&#xff0c;继续介绍C#在反射所开发的功能和做的努力。上一篇文章大概介绍了一下泛型和反射的一些基本内容&#xff0c;主要是通过获取对象的类型&#xff0c;然后通过这个类型对象操作对象。这一篇介绍一个在反射中很重…

hdu 1297 递推难题

这题的话&#xff0c;我能玩一年 今天做了很多递推的题&#xff0c;这题无疑是最复杂的 其实可以看出来,2,3,4,5为一类&#xff0c;不妨定义为2型&#xff0c;1&#xff0c;6为一类&#xff0c;定义为1型 规定num[i]为结尾是i的凹槽的数量 我们可以能轻易的推出 sum num[1]*2n…

mysql 8.0远程连接_安装mysql 8.0.17并配置远程访问的方法

一、安装前准备查看数据库版本命令&#xff1a; mysql --versionmysql-community-common-8.0.17-1.el7.x86_64.rpmmysql-community-libs-8.0.17-1.el7.x86_64.rpmmysql-community-client-8.0.17-1.el7.x86_64.rpmmysql-community-server-8.0.17-1.el7.x86_64.rpm二、安装RPM包依…

python体育竞技分析代码200行_使用Python进行体育竞技分析(预测球队成绩)

使用Python进行体育竞技分析&#xff08;预测球队成绩&#xff09; 发布时间&#xff1a;2020-09-18 06:38:27 来源&#xff1a;脚本之家 阅读&#xff1a;69 今天我们用python进行体育竞技分析&#xff0c;预测球队成绩 一. 体育竞技分析的IPO模式 &#xff1a; 输入I(input)&…

使用JavaScript进行数组去重——一种高效的算法

最近比较忙&#xff0c;没时间更新博客&#xff0c;等忙完这阵子会整理一篇使用AngularJS构建一个中型的单页面应用(SPA)的文章&#xff0c;尽情期待&#xff01;先占个坑。 数组去重的算法有很多种&#xff0c;以下是一种。 思路如下&#xff1a; 定义一个空的对象obj&#xf…

rpm的mysql安装_MySQL 5.7.22 rpm 安装方式

在MySQL官网下载安装包[roothashow-db-master resource]# tar -xvf mysql-5.7.22-1.el7.x86_64.rpm-bundle.tar[roothashow-db-master resource]# lsDATALOSS_WARNING_README.txt mysql-community-common-5.7.22-1.el7.x86_64.rpm mysql-communi…

为什么有时优盘是只读模式_JS专题之严格模式

ECMAScript 5 引入了 strict mode ,现在已经被大多浏览器实现&#xff08;从IE10开始&#xff09;一、什么是严格模式顾名思义&#xff0c;JavaScript 严格模式就是让 JS 代码以更严格的模式执行&#xff0c;不允许可能会引发错误的代码执行。在正常模式下静默失败的代码&#…

iOS开发触摸事件的传递

1. iOS中的三种事件类型 触摸事件、加速计事件、远程事件。 触摸事件&#xff1a;通过触摸、手势进行触发&#xff08;例如手指点击、缩放&#xff09; 加速计事件&#xff1a;通过加速器进行触发&#xff08;例如手机晃动&#xff0c;典型应用是微信摇一摇&#xff09; 远程事…

mysql router 介绍_MySQL Router 介绍篇

MySQL Router 是什么&#xff1f;相信还有很多人没有听说过MySQL Router&#xff0c;很多人对它还不了解&#xff0c;在这篇文章里&#xff0c;将对MySQL Router进行一个简明介绍。首先&#xff0c;介绍一下MySQL Router推出的背景。MySQL Router 是一个轻量级的中间件&#xf…

react 更新input 默认值setfieldsvalue_值得收藏的React面试题

react1、什么是虚拟DOM&#xff1f;难度: ⭐虚拟 DOM (VDOM)是真实 DOM 在内存中的表示。UI 的表示形式保存在内存中&#xff0c;并与实际的 DOM 同步。这是一个发生在渲染函数被调用和元素在屏幕上显示之间的步骤&#xff0c;整个过程被称为调和。2、类组件和函数组件之间的区…

实验二Step1-有序顺序表

1 #include<stdio.h>2 3 struct job4 {5 char name[10];//作业名称6 char status;//当前状态7 int arrtime;//到达时间8 int reqtime;//要求服务时间9 int startime;//调度时间 10 int finitme;//完成时间 11 float TAtime,TAWtime;//周转时…

mysql修改的值子查询语句_MySQL的SQL语句 - 数据操作语句(13)- 子查询(13)

子查询的限制● 通常&#xff0c;不能在子查询中修改表并从同一表中进行选择。例如&#xff0c;此限制适用于以下形式的语法&#xff1a;1. DELETE FROM t WHERE ... (SELECT ... FROM t ...);2. UPDATE t ... WHERE col (SELECT ... FROM t ...);3. {INSERT|REPLACE} INTO t …

ocx控件 postmessage消息会消失_APP控件之二——弹框

弹框分为两种&#xff1a;模态弹框和非模态弹框一、模态弹框模态弹框和非模态弹框最大的区别就是是否强制用户交互。模态弹框会打断用户的当前操作流程&#xff0c;用户不在弹框上操作的话&#xff0c;其余功能都使用不了。优点是&#xff1a;可以很好的获取的用户的视觉焦点缺…

结对编程(1)

我的结对编程项目搭档是王以正&#xff0c;我们的代码也是基于他个人项目的代码修改的。 由于王以正同学不在宿舍住也不怎么会宿舍&#xff0c;我们结对编程的时间较少&#xff0c;不过他将他的代码代码放到了github上面&#xff0c;这也让我有机会学习了github的使用。感觉这个…

mysql sqldump_mysql sqldump 备份

参考&#xff1a;https://www.cnblogs.com/linuxk/p/9371475.html1. windows 下面 创建 dump.bat 文件&#xff1a;文件内容如下"C:\Program Files\MariaDB 10.4\bin\mysqldump" -u root -p123456 metadata > D:\DB\mysql\metadata.sql备注&#xff1a; 这个是ma…

伪代码block转换成程序流程图_程序设计基础

1、程序与程序设计语言的基本知识1&#xff09;程序&#xff1a;为解决某一问题而采用程序设计语言编写的一个指令集合。程序算法&#xff08;对操作的描述&#xff09;数据结构&#xff08;对数据的描述&#xff09;程序设计语言语言工具和环境。2&#xff09;程序的特点&…

Java Map用法

Map简介 将键映射到值的对象。一个映射不能包含重复的键&#xff1b;每个键最多只能映射到一个值。此接口取代 Dictionary 类&#xff0c;后者完全是一个抽象类&#xff0c;而不是一个接口。 Map 接口提供三种collection 视图&#xff0c;允许以键集、值集或键-值映射关系集的形…

mysql 内联函数_C++之内联函数

C继承C的一个重要特性是效率&#xff0c;在C中保护效率的一个方法是使用宏(macro),宏的实现是使用预处理器而不是编译器&#xff0c;预处理器直接用宏代码替换宏调用&#xff0c;所以就没有了参数压栈、生成汇编语言的CALL、返回参数、执行汇编语言的RETURN的时间花费&#xff…