`

IO基本

 
阅读更多

class FileHandle {
/**
* 新建目录
*
* @param folderPath
* String 如 c:/fqf
* @return boolean
*/
public void newFolder(String folderPath) {
try {
String filePath = folderPath;
filePath = filePath.toString();
java.io.File myFilePath = new java.io.File(filePath);
if (!myFilePath.exists()) {
myFilePath.mkdir();
}
} catch (Exception e) {
System.out.println("新建目录操作出错");
e.printStackTrace();
}
}

/**
* 新建文件
*
* @param filePathAndName
* String 文件路径及名称 如c:/fqf.txt
* @param fileContent
* String 文件内容
* @return boolean
*/
public void newFile(String filePathAndName, String fileContent) {
FileWriter resultFile = null;
PrintWriter myFile = null;
try {
String filePath = filePathAndName;
filePath = filePath.toString();
File myFilePath = new File(filePath);
if (!myFilePath.exists()) {
myFilePath.createNewFile();
}
resultFile = new FileWriter(myFilePath);
myFile = new PrintWriter(resultFile);
String strContent = fileContent;
myFile.println(strContent);

} catch (Exception e) {
System.out.println("新建目录操作出错");
e.printStackTrace();
} finally {
try {
if (myFile != null) {
myFile.close();
}
if (resultFile != null) {
resultFile.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}

}

/**
* 删除文件
*
* @param filePathAndName
* String 文件路径及名称 如c:/fqf.txt
* @return boolean
*/
public void delFile(String filePathAndName) {

String filePath = filePathAndName;
filePath = filePath.toString();
java.io.File myDelFile = new java.io.File(filePath);
myDelFile.delete();

}

/**
* 删除文件夹
*
* @param folderPath
* String 文件夹路径 如c:/fqf
* @return boolean
*/
public void delFolder(String folderPath) {

delAllFile(folderPath); // 删除完里面所有内容
String filePath = folderPath;
filePath = filePath.toString();
java.io.File myFilePath = new java.io.File(filePath);
System.out.println("=========" + myFilePath.getName());
myFilePath.delete(); // 删除空文件夹

}

/**
* 删除文件夹里面的所有文件
*
* @param path
* String 文件夹路径 如 c:/fqf
*/
public void delAllFile(String path) {
File file = new File(path);
if (!file.exists()) {
return;
}
if (!file.isDirectory()) {
return;
}
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {
if (path.endsWith(File.separator)) {
temp = new File(path + tempList[i]);
} else {
temp = new File(path + File.separator + tempList[i]);
}
if (temp.isFile()) {
System.out.println("=========" + temp.getName());
temp.delete();
}
if (temp.isDirectory()) {
delAllFile(path + File.separator + tempList[i]);// 先删除文件夹里面的文件
delFolder(path + File.separator + tempList[i]);// 再删除空文件夹
}
}
}

/**
* 复制单个文件
*
* @param oldPath
* String 原文件路径 如:c:/fqf.txt
* @param newPath
* String 复制后路径 如:f:/fqf.txt
* @return boolean
* @throws IOException
*/
public void copyFile(String oldPath, String newPath) throws IOException {

int bytesum = 0;
int byteread = 0;
InputStream inStream = null;
FileOutputStream fs = null;
try {
File oldfile = new File(oldPath);
if (oldfile.exists()) { // 文件存在时
inStream = new FileInputStream(oldPath); // 读入原文件
fs = new FileOutputStream(newPath);
byte[] buffer = new byte[1024 * 4];
while ((byteread = inStream.read(buffer)) != -1) {
bytesum += byteread; // 字节数 文件大小
System.out.println("文件大小:" + bytesum);
fs.write(buffer, 0, byteread);
}

}
} catch (IOException e) {
e.printStackTrace();
throw new IOException("拷贝文件" + oldPath + "时出错");
} finally {
try {
if (fs != null) {
fs.close();
}
if (inStream != null) {
inStream.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}

}

/**
* 复制整个文件夹内容
*
* @param oldPath
* String 原文件路径 如:c:/fqf
* @param newPath
* String 复制后路径 如:f:/fqf/ff
* @return boolean
* @throws Exception
*/
public void copyFolder(String oldPath, String newPath) throws Exception {
FileInputStream input = null;
FileOutputStream output = null;
try {
(new File(newPath)).mkdirs(); // 如果文件夹不存在 则建立新文件夹
File a = new File(oldPath);
String[] file = a.list();
File temp = null;
for (int i = 0; i < file.length; i++) {
if (oldPath.endsWith(File.separator)) {
temp = new File(oldPath + file[i]);
} else {
temp = new File(oldPath + File.separator + file[i]);
}

if (temp.isFile()) {
input = new FileInputStream(temp);
output = new FileOutputStream(newPath + File.separator
+ (temp.getName()).toString());
byte[] b = new byte[1024 * 5];
int len;
while ((len = input.read(b)) != -1) {
output.write(b, 0, len);
}
output.flush();
}
if (temp.isDirectory()) {
if (!temp.getAbsolutePath().contentEquals(
new StringBuffer(newPath.replace('/', '//'))))
copyFolder(oldPath + "/" + file[i], newPath + "/"
+ file[i]);
}
}
} catch (Exception e) {
System.out.println("复制整个文件夹内容操作出错");
e.printStackTrace();
throw new Exception("把" + oldPath + "拷贝到" + newPath + "时出错");

} finally {
try {
if (output != null) {
output.close();
}
if (input != null) {
input.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}

}

/**
* 移动文件到指定目录
*
* @param oldPath
* String 如:c:/fqf.txt
* @param newPath
* String 如:d:/fqf.txt
* @throws IOException
*/
public void moveFile(String oldPath, String newPath) throws IOException {
copyFile(oldPath, newPath);
delFile(oldPath);

}

/**
* 移动文件到指定目录
*
* @param oldPath
* String 如:c:/fqf
* @param newPath
* String 如:d:/fqf
* @throws Exception
*/
public void moveFolder(String oldPath, String newPath) throws Exception {
copyFolder(oldPath, newPath);
delFolder(oldPath);

}

/**
* 修改属性文件
*
* @param propFile
* 要修改的属性文件
* @param modifyProp
* 要修改的属性
* @throws IOException
*/
public void modifyProp(String propFile, Map modifyProp) throws IOException {
Properties proper = new Properties();

FileInputStream finPut = new FileInputStream(propFile);
proper.load(finPut);
Iterator keys = (Iterator) modifyProp.keySet().iterator();
while (keys.hasNext()) {
String key = (String) keys.next();
String value = (String) modifyProp.get(key);
System.out.println("key==" + key);
System.out.println("value==" + value);
proper.put(key, value);

}

FileOutputStream foutPut = new FileOutputStream(propFile);
proper.store(foutPut, "");

}

public void modifyFile(String propFile, Map modifyProp) throws IOException {
FileReader fr = null;
BufferedReader br = null;
try {
fr = new FileReader(propFile);
br = new BufferedReader(fr);
StringBuffer allProp = new StringBuffer();
String temp;
String key;
String value;
int end;
// 执行修改和删除
while (true) {
temp = br.readLine();
if (temp == null)
break;
end = temp.indexOf("=");
if (end != -1) {
key = temp.substring(0, end);
value = (String) modifyProp.get(key);
if (value != null && !"#delete;".equals(value)) {
temp = key + "=" + value;
modifyProp.remove(key);
} else if ("#delete;".equals(value)) {
temp = "";
modifyProp.remove(key);
}
}
allProp.append(temp);
allProp.append("/r/n");
// System.out.println(temp);
}
// 执行增加
Iterator ite = modifyProp.keySet().iterator();
while (ite.hasNext()) {
key = (String) ite.next();
value = (String) modifyProp.get(key);
if (!"#delete;".equals(value)) {
allProp.append(key + "=" + value);
allProp.append("/r/n");
}
// System.out.println(key + "==" + value);
}
// System.out.println(allProp.toString());
PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter(
propFile)));
pw.write(allProp.toString());
pw.close();
} catch (IOException e) {
throw new IOException("修改文件" + propFile + "出错");
} finally {
if (br != null) {
br.close();
}
if (fr != null) {
fr.close();
}
}
}

}

分享到:
评论

相关推荐

    ABB机器人IO基本操作和接线练习【详解】.docx

    ### ABB机器人IO基本操作和接线练习详解 #### 一、设定IO信号为常用信号操作 ##### 1. 设定说明 设定已创建的IO信号为常用信号是为了便于在示教器上查看和操作这些信号。当机器人重启后,默认会显示设定的常用IO...

    使用java swing、javaio基本操作以及mysql的农场小游戏

    《使用Java Swing、Java IO基本操作以及MySQL的农场小游戏》 本项目是一个针对初学者的课程设计,旨在帮助学生深入理解和应用Java编程语言,特别是Java Swing库用于图形用户界面(GUI)开发,Java IO用于文件操作,...

    XML_JSON_IO基本操作

    XML、JSON和IO是计算机编程中的重要概念,特别是在数据交换和存储方面。下面将详细解释这三个领域的基本操作。 XML(可扩展标记语言)是一种用于存储和传输数据的标准格式,它以结构化的方式组织数据。在提供的代码...

    rapidIO嵌入式系统互连_rapidio_rapidIO嵌入式系统互连_rapidio嵌入式_嵌入式_

    1. **RapidIO基本原理**:介绍RapidIO协议的基本结构、数据传输机制和协议栈。 2. **RapidIO硬件设计**:讲解如何设计和实现RapidIO接口,包括物理层和数据链路层的实现。 3. **RapidIO软件支持**:阐述如何在操作...

    Rapid-IO.rar_SRIO_rapdi io 结构_rapid io_rapid_io_srio io

    ### RapidIO基本概念 1. **串行与并行接口**: RapidIO最初是并行接口,但随着技术的发展,逐渐转向了串行接口,以满足更高的带宽需求和更远的传输距离。串行RapidIO(SRIO)支持多路复用,可以同时处理多个数据流,...

    浅谈java之IO学习经验

    ### Java IO基本概念 Java中的IO(Input/Output)是程序与外部数据交互的重要方式之一。它主要用于解决程序运行过程中数据的读写问题。在Java中,所有IO操作都是基于流的方式进行的。流是一种有序的数据序列,Java ...

    前端开源库-pipe-io

    这就是pipe-io基本的使用方式。 ### 7. 结论 pipe-io作为一个前端开源库,为开发者提供了一种高效、灵活的方式来处理数据流。通过理解和掌握其核心概念,我们可以编写出更加优雅、高效的前端应用,尤其是在处理...

    IO流程解析与基本原理

    ### IO流程解析与基本原理 #### 一、IO流程概览 在计算机系统中,输入输出(Input/Output,简称IO)操作是数据交互的基础。本文将深入探讨IO流程的基本原理,特别是针对块设备的IO流程,包括从提交读写请求到实际执行...

    关于stm32_IO口的基本操作

    以下内容将详细介绍STM32 IO口的基本操作和相关概念。 1. IO口模式 STM32的IO口可以通过软件配置为不同的模式,以实现不同的功能。 - GPIO_Mode_IN(输入模式):在这种模式下,IO口被配置为输入,可以读取外部...

    RAPIDIO嵌入式系统互连_rapidio中文协议_rapidio嵌入式_

    1. **协议基础**:介绍 RapidIO 协议的基本概念,包括协议架构、数据包格式、地址映射和错误处理机制。 2. **物理层与接口**:解释不同物理层实现的细节,如电气接口标准、光接口标准,以及信号编码和解码。 3. **...

    网络IO模型:同步IO和异步IO,阻塞IO和非阻塞IO

    在计算机科学中,网络I/O(输入/输出)模型是...了解这些基本概念后,开发者可以根据具体需求选择合适的IO模型,优化其网络应用的性能和响应速度。在网络编程中,正确理解和使用IO模型是提高系统效率和用户体验的关键。

    Linux基本文件IO

    Linux基本文件IO ppt格式教程 Linux 指令

    PlatformIO IDE(VSCode) 基本使用 - 新建项目 - 知乎1

    PlatformIO IDE(VSCode) 基本使用 - 新建项目 PlatformIO IDE 是一个基于 VSCode 的集成开发环境,专门为 IoT 和嵌入式系统开发而设计。下面将对 PlatformIO IDE 的基本使用进行介绍,包括新建项目的步骤。 新建...

    stm32 IO口的基本操作

    以下是关于STM32 IO口基本操作的知识点。 首先,STM32 IO口具备多种模式,用于适应不同的外部设备连接需求。GPIO(通用输入输出)的模式主要包括: 1. 输入模式GPIO_Mode_IN:此模式下,IO口被配置为接收外部信号...

    C#基本IO操作

    C#基本IO操作 Filestream textreader textwriter streamwriter streamreader 序列化和反序列化

    系统IO跟标准IO的连续与区别

    系统 IO 又称文件 IO 或低级磁盘 IO,是一种不带缓存的 IO 操作,它提供了基本的 IO 服务,特定于 Linux 或 Unix 平台。标准 IO 则被称为高级磁盘 IO,它提供了三种类型的缓存:全缓存、行缓存和不带缓存。 二、...

    DDRIO模块简要使用说明

    本文将深入探讨DDRIO的基本原理、配置方法以及实际应用中的注意事项。 DDRIO的设计理念是为了满足现代高速通信和存储系统对数据速率不断增长的需求。在传统的单边沿触发的数据传输中,数据只能在一个时钟周期内传输...

    socket.io,socket.io-client下载

    使用Socket.IO进行实时通信的基本步骤如下: 1. **服务器端设置**:在Node.js项目中,导入`socket.io`模块,初始化服务器并监听特定端口,然后使用`io.on('connection', (socket) =&gt; {})`来处理新连接和事件。 2. ...

    Linux文件IO跟标准IO总结

    首先,我们从基本概念出发,理解这两种IO方式。 **文件IO**是Linux系统中最常见的IO模型,它基于系统调用接口,如`open()`, `read()`, `write()`, `close()`等。文件IO允许程序直接与文件系统交互,执行打开、读取...

    Java io的基本操作很全面的代码呀

    在这个“Java io的基本操作很全面的代码”项目中,我们可以看到一系列针对Java IO的实例,对于学习和理解Java IO有着极大的帮助。 首先,我们来看看Java IO的基础知识。Java IO主要包括以下几大核心类: 1. **...

Global site tag (gtag.js) - Google Analytics