本文主要是介绍[Java IO]01_File类和RandomAccessFile类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
File类
File类是java.io包中唯一对文件本身进行操作的类。它可以进行创建、删除文件等操作。
File类常用操作
(1)创建文件
(2)删除文件
import java.io.IOException;
public class FileDemo01 {
public static void createFile(String filepath) {
File f = new File(filepath);
System.out.println("[Create File] " + f.getPath().toString());
try {
f.createNewFile(); // 创建文件,根据给定的路径创建
} catch (IOException e) {
e.printStackTrace(); // 输出异常信息
}
}
public static void deleteFile(String filepath) {
File f = new File(filepath);
System.out.println("[Delete File] " + f.getPath().toString());
if(f.exists()){ // 如果文件存在则删除
f.delete(); // 创建文件,根据给定的路径创建
}
}
public static void main(String args[]) {
// 注意三种分隔符方式
String path1 = "d:\\test1.txt"; // Windows中使用反斜杠表示目录的分隔符"\"
String path2 = "d:/test2.txt"; // Linux中使用正斜杠表示目录的分隔符"/"
String path3 = "d:" + File.separator + "test3.txt"; // 最好的做法是使用File.separator,可以根据所在操作系统选取对应分隔符
createFile(path1);
createFile(path2);
createFile(path3);
deleteFile(path1);
}
};
(3)创建文件夹
public class FileDemo02 {
public static void main(String args[]) {
File f = new File("d:\\abc\\test"); // 实例化File类的对象
f.mkdir(); // 创建文件夹
// f.mkdirs(); // 创建文件夹,如果父路径不存在,会一并创建
}
};
(4)列出指定目录全部文件
public class FileDemo03 {
public static void testListFiles1(String path) {
File f = new File(path); // 实例化File类的对象
String str[] = f.list(); // 列出给定目录中的内容
System.out.println("[list]");
for ( int i = 0; i < str.length; i++) {
System.out.println(str[i]);
}
}
public static void testListFiles2(String path) {
File f = new File(path); // 实例化File类的对象
File files[] = f.listFiles(); // 列出全部内容
System.out.println("[listFiles]");
for ( int i = 0; i < files.length; i++) {
System.out.println(files[i]);
}
}
public static void main(String args[]) {
String path = "d:" + File.separator;
testListFiles1(path);
testListFiles2(path);
}
};
(5)删除目录
public class DeleteDirectory {
/**
* 删除空目录,如果目录不为空,无法删除
* @param dir
*/
private static void deleteEmptyDir(String dir) {
File f = new File(dir);
boolean success = f.delete();
if (success) {
System.out.println("Success to deleted " + dir);
} else {
System.out.println("Failed to delete " + dir);
}
}
/**
* 如果传入的是一个目录对象,遍历删除其所有子文件和子目录
* @param dir
* @return
*/
private static boolean deleteDir(File dir) {
if (dir.isDirectory()) {
File[] children = dir.listFiles(); // 递归删除目录中的子目录下
for ( int i = 0; i < children.length; i++) {
boolean success = deleteDir(children[i]);
if (!success) {
return false;
}
}
}
// 目录此时为空,可以删除
return dir.delete();
}
public static void main(String[] args) {
String emptyDir = "d:\\empty";
String dir2 = "d:\\test";
deleteEmptyDir(emptyDir);
boolean success = deleteDir( new File(dir2));
if (success) {
System.out.println("Success to deleted " + dir2);
} else {
System.out.println("Failed to delete " + dir2);
}
}
}
RandomAccessFile类
它适用于由大小已知的记录组成的文件,所以我们可以使用seek()将记录从一处转移到另一处,然后读取或者修改记录。
文件中记录的大小不一定都相同,只要能够确定哪些记录有多大以及它们在文件中的位置即可。
(1)写入数据
import java.io.RandomAccessFile;
public class RandomAccessFileDemo01 {
// 所有的异常直接抛出,程序中不再进行处理
public static void main(String args[]) throws Exception {
File f = new File("d:" + File.separator + "test.txt"); // 指定要操作的文件
RandomAccessFile rdf = null; // 声明RandomAccessFile类的对象
rdf = new RandomAccessFile(f, "rw"); // 读写模式,如果文件不存在,会自动创建
String name = null;
int age = 0;
name = "zhangsan"; // 字符串长度为8
age = 30; // 数字的长度为4
rdf.writeBytes(name); // 将姓名写入文件之中
rdf.writeInt(age); // 将年龄写入文件之中
name = "lisi "; // 字符串长度为8
age = 31; // 数字的长度为4
rdf.writeBytes(name); // 将姓名写入文件之中
rdf.writeInt(age); // 将年龄写入文件之中
name = "wangwu "; // 字符串长度为8
age = 32; // 数字的长度为4
rdf.writeBytes(name); // 将姓名写入文件之中
rdf.writeInt(age); // 将年龄写入文件之中
rdf.close(); // 关闭
}
};
(2)读取数据
import java.io.RandomAccessFile;
public class RandomAccessFileDemo02{
// 所有的异常直接抛出,程序中不再进行处理
public static void main(String args[]) throws Exception{
File f = new File("d:" + File.separator + "test.txt") ; // 指定要操作的文件
RandomAccessFile rdf = null ; // 声明RandomAccessFile类的对象
rdf = new RandomAccessFile(f,"r") ; // 以只读的方式打开文件
String name = null ;
int age = 0 ;
byte b[] = new byte[8] ; // 开辟byte数组
// 读取第二个人的信息,意味着要空出第一个人的信息
rdf.skipBytes(12) ; // 跳过第一个人的信息
for( int i=0;i<b.length;i++){
b[i] = rdf.readByte() ; // 读取一个字节
}
name = new String(b) ; // 将读取出来的byte数组变为字符串
age = rdf.readInt() ; // 读取数字
System.out.println("第二个人的信息 --> 姓名:" + name + ";年龄:" + age) ;
// 读取第一个人的信息
rdf.seek(0) ; // 指针回到文件的开头
for( int i=0;i<b.length;i++){
b[i] = rdf.readByte() ; // 读取一个字节
}
name = new String(b) ; // 将读取出来的byte数组变为字符串
age = rdf.readInt() ; // 读取数字
System.out.println("第一个人的信息 --> 姓名:" + name + ";年龄:" + age) ;
rdf.skipBytes(12) ; // 空出第二个人的信息
for( int i=0;i<b.length;i++){
b[i] = rdf.readByte() ; // 读取一个字节
}
name = new String(b) ; // 将读取出来的byte数组变为字符串
age = rdf.readInt() ; // 读取数字
System.out.println("第三个人的信息 --> 姓名:" + name + ";年龄:" + age) ;
rdf.close() ; // 关闭
}
};
运行结果
第一个人的信息 --> 姓名:zhangsan;年龄:30
第三个人的信息 --> 姓名:wangwu ;年龄:32
参考资料
Java 编程思想
Java 开发实战经典
这篇关于[Java IO]01_File类和RandomAccessFile类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!