资源简介
java利用io技术创建文件夹、读取txt文件、写入txt文件(覆盖、不覆盖均有)

代码片段和文件信息
package com.test.util;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class FileUtil {
/**
* 读取txt
* @param path(绝对路径包含文件名)
* @return
* @throws IOException
*/
public static String readtxt(String path) throws IOException{
BufferedReader br = new BufferedReader(new FileReader(path));
String str = ““;
String r = br.readLine();
while(r!=null){
str = str + r;
}
br.close();
return str;
}
/**
* 写成txt(不覆盖)
* @param content
* @param path(绝对路径包含文件名)
* @return
* @throws IOException
*/
public static void writetxt(String contentString path) throws IOException{
FileUtil.createfile(path);
BufferedWriter bw = new BufferedWriter(new FileWriter(new File(path)true));
bw.write(“\r\n“+content);
bw.close();
}
/**
* 写成txt(覆盖)
* @param content
* @param path(绝对路径包含文件名)
* @return
* @throws IOException
*/
public static void writetxt2(String contentString path) throws IOException{
FileUtil.createfile(path);
BufferedWriter bw = new BufferedWriter(new FileWriter(new File(path)));
bw.write(content);
bw.close();
}
/**
* 创建文件(存在不处理,不存在创建)
* @param path(绝对路径包含文件名)
* @param args
* @throws IOException
*/
public static void createfile(String path) throws IOException{
File file = new File(path);
if(!file.exists()){
FileUtil.createparentfile(path);
file.createNewFile();
}
}
/**
* 创建文件夹(存在不处理,不存在创建)
* @param path(绝对路径包含文件名)
* @param args
* @throws IOException
*/
public static void createparentfile(String path) throws IOException{
File file = new File(path);
File pfile = file.getParentFile();
if(!pfile.exists()){
pfile.mkdirs();
}
}
/**
* 创建文件夹(存在不处理,不存在创建)
* @param path(绝对路径包含文件名)
* @param args
* @throws IOException
*/
public static void createparentfolder(String path) throws IOException{
File file = new File(path);
File pfile = file.getParentFile();
if(!pfile.exists()){
pfile.mkdirs();
}
}
/**
* 创建文件夹(存在不处理,不存在创建)
* @param path(绝对路径不包含文件名)
* @param args
* @throws IOException
*/
public static void createfolder(String path) throws IOException{
File file = new File(path);
if(!file.exists()){
file.mkdirs();
}
}
public static void main(String[] args) {
String content = “11111111111“;
String path = “d://txt//1111.txt“;
try {
FileUtil.writetxt2(content path);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2982 2016-06-16 11:42 FileUtil.java
相关资源
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
评论
共有 条评论