java File处理

package com.zero4j.util;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;

import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;

import org.springframework.stereotype.Component;
import org.springframework.web.context.ServletContextAware;
import org.springframework.web.multipart.MultipartFile;

/**
*
* 上传工具类
*
*
*/
@Component
public class UploadUtil implements ServletContextAware {

private static ServletContext servletContext = null;

@Override
public void setServletContext(ServletContext servletContext) {
this.servletContext = servletContext;
}

/**
* 保存文件
*
* @param files
* @param id
* @param request
* @author hzr 2016年12月5日
*/
public static void fileSave(MultipartFile files, String id, HttpServletRequest request) {
String fileFileName = files.getOriginalFilename();
if (files == null || files.equals("")) {
return;
} else {
String extension = (fileFileName.substring(fileFileName.lastIndexOf(".") + 1, fileFileName.length())).toLowerCase(); // 获取扩展名并转换成小写
// 开始执行上传操作
try {

// 设定图片上传的临时目录
File srcFile = new File(servletContext.getRealPath("/uploads/other/"), id + "." + extension);
System.out.println(srcFile);
if (!srcFile.exists()) {
System.out.println("路径不存在!!!!!!!!");
srcFile.mkdirs();
}
files.transferTo(srcFile);

} catch (Exception e) {
e.printStackTrace();
return;
}

/*
* //如果文件后缀不同则先删除原有文件
* if(files.getExtension()==null||!extension.equals
* (_upload.getExtension().toLowerCase())){ new
* File(ServletActionContext
* .getRequest().getRealPath("/uploads/other"),
* _upload.getId()+"."+_upload.getExtension()).deleteOnExit(); }
*
* //更新文件后缀到数据库中 _upload.setContentType(this.fileContentType);
* _upload.setExtension(extension);
* this.uploadService.update(_upload);
*/

// }

}

}

/**
* 保存文件
*
* @param files
* @param id
* @param request
* @author hzr 2016年12月5日
*/
public static String fileSave_other(MultipartFile files, String id, HttpServletRequest request) {
String fileFileName = files.getOriginalFilename();
if (files == null || files.equals("")) {
return null;
} else {
String extension = (fileFileName.substring(fileFileName.lastIndexOf(".") + 1, fileFileName.length())).toLowerCase(); // 获取扩展名并转换成小写
// 开始执行上传操作
try {

// 设定图片上传的临时目录

File srcFile = new File(servletContext.getRealPath("/uploads/styleItem/"), id + "." + extension);
System.out.println(srcFile);
if (!srcFile.exists()) {
System.out.println("文件路径不存在!!!!!!!!");
srcFile.mkdirs();
}

/*String imageSourcePath = request.getRealPath("/uploads/styleItem");
File srcFile = new File(imageSourcePath, id + "." + extension);
if(!srcFile.exists()){
srcFile.mkdir();
}*/

//System.out.println(srcFile.toString()+"路径asdasdasdsa");
files.transferTo(srcFile);
return "/uploads/styleItem/"+id + "." + extension ;
} catch (Exception e) {
e.printStackTrace();
return null ;
}

/*
* //如果文件后缀不同则先删除原有文件
* if(files.getExtension()==null||!extension.equals
* (_upload.getExtension().toLowerCase())){ new
* File(ServletActionContext
* .getRequest().getRealPath("/uploads/other"),
* _upload.getId()+"."+_upload.getExtension()).deleteOnExit(); }
*
* //更新文件后缀到数据库中 _upload.setContentType(this.fileContentType);
* _upload.setExtension(extension);
* this.uploadService.update(_upload);
*/

// }

}

}

/**
* 删除文件夹
* @param filePathAndName String 文件夹路径及名称 如c:/fqf
* @param fileContent String
* @return boolean
*/
public static void delFolder(String folderPath) {
folderPath=servletContext.getRealPath(folderPath);
//System.out.println("执行删除文件夹操作 源文件路径"+folderPath);
try {
delAllFile(folderPath); //删除完里面所有内容
String filePath = folderPath;
filePath = filePath.toString();
java.io.File myFilePath = new java.io.File(filePath);
myFilePath.delete(); //删除空文件夹

}
catch (Exception e) {
System.out.println("删除文件夹操作出错");
e.printStackTrace();

}

}

/**
* 删除文件夹里面的所有文件
* @param path String 文件夹路径 如 c:/fqf
*/
public static void delAllFile(String path) {
path=servletContext.getRealPath(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()) {

temp.delete();
}
if (temp.isDirectory()) {
delAllFile(path+"/"+ tempList[i]);//先删除文件夹里面的文件
delFolder(path+"/"+ tempList[i]);//再删除空文件夹
}
}
}

/**
* 复制单个文件
* @param oldPath String 原文件相对路径 如:c:/fqf.txt
* @param newPath String 复制后相对路径 如:f:/fqf.txt
* @return boolean
*/
public static boolean copyFile(String oldPath, String newPath) {
// System.out.println("执行复制文件操作 源文件路径"+servletContext.getRealPath(oldPath)+" 目的文件路径 "+servletContext.getRealPath(newPath));
try {
// int bytesum = 0;
int byteread = 0;
File oldfile = new File(servletContext.getRealPath(oldPath));

File srcFile = new File(servletContext.getRealPath("/uploads/styleItemTemplate/"));
//System.out.println(srcFile);
if (!srcFile.exists()) {
System.out.println("文件夹路径不存在!!!!!!!!");
srcFile.mkdirs();
}

File myFileName = new File(servletContext.getRealPath(newPath));
try{
if (!myFileName.exists()) {
myFileName.createNewFile();
}
}catch (Exception e) {
System.out.println("新建文件操作出错");
e.printStackTrace();
return false;
}

if (oldfile.exists()) { //文件存在时
InputStream inStream = new FileInputStream(servletContext.getRealPath(oldPath)); //读入原文件
FileOutputStream fs = new FileOutputStream(servletContext.getRealPath(newPath));

byte[] buffer = new byte[1444];
// int length;
while ( (byteread = inStream.read(buffer)) != -1) {
// bytesum += byteread; //字节数 文件大小
// System.out.println(bytesum);
fs.write(buffer, 0, byteread);

}
inStream.close();
// System.out.println("复制成功");
}
return true;
}
catch (Exception e) {
System.out.println("复制单个文件操作出错");
e.printStackTrace();
return false;

}

}

/**
* 复制单个文件
* @param tempalteFileFolderRoute String 临时文件夹路径相对路径 如:c:/fqf
* @param newPath String 资源文件夹路径相对路径 如:f:/fqf1
* @return boolean
*/
public static boolean copyFileFolder(String tempalteFileFolderRoute, String newPath) {
// System.out.println("执行复制文件操作 源文件路径"+servletContext.getRealPath(oldPath)+" 目的文件路径 "+servletContext.getRealPath(newPath));

try {
File srcFile = new File(servletContext.getRealPath(tempalteFileFolderRoute));
if (!srcFile.exists()) {
System.out.println("文件夹路径不存在!!!!!!!!");
srcFile.mkdirs();
}

File srcFile1 = new File(servletContext.getRealPath(newPath));
if (!srcFile1.exists()) {
System.out.println("文件夹路径不存在!!!!!!!!");
srcFile1.mkdirs();
}

String path=servletContext.getRealPath(tempalteFileFolderRoute);

File file = new File(path);
String[] tempList = file.list();
File temp = null;
for (int i = 0; i < tempList.length; i++) {

String tempRoute=tempalteFileFolderRoute+"/"+tempList[i];
String normalRoute=newPath+"/"+tempList[i];

File oldfile = new File(servletContext.getRealPath(tempRoute));

File myFileName = new File(servletContext.getRealPath(normalRoute));
int byteread = 0;
try{
if (!myFileName.exists()) {
myFileName.createNewFile();
}
}catch (Exception e) {
System.out.println("新建文件操作出错");
e.printStackTrace();
return false;
}

if (oldfile.exists()) { //文件存在时
InputStream inStream = new FileInputStream(servletContext.getRealPath(tempRoute)); //读入原文件
FileOutputStream fs = new FileOutputStream(servletContext.getRealPath(normalRoute));

byte[] buffer = new byte[1444];
// int length;
while ( (byteread = inStream.read(buffer)) != -1) {
// bytesum += byteread; //字节数 文件大小
// System.out.println(bytesum);
fs.write(buffer, 0, byteread);

}
inStream.close();
//System.out.println("复制成功");

}
}
return true;
}
catch (Exception e) {
System.out.println("复制文件操作出错");
e.printStackTrace();
return false;

}
}

/*para
source 源文件目录
dest 复制文件目录
para*/
/*复制文件*/
public static void copyFile2(String source, String dest) {
System.out.println("执行复制文件操作 源文件路径"+servletContext.getRealPath(source)+" 目的文件路径 "+servletContext.getRealPath(dest));

File srcFile = new File(servletContext.getRealPath("/uploads/styleItemTemplate"));
System.out.println(srcFile);
if (!srcFile.exists()) {
System.out.println(servletContext.getRealPath(dest)+" 路径不存在!!!!!!!!");
srcFile.mkdirs();
}

try {
File in = new File(servletContext.getRealPath(source));//源文件目录
File out = new File(servletContext.getRealPath(dest)); //复制文件目录
FileInputStream inFile = new FileInputStream(in);
FileOutputStream outFile = new FileOutputStream(out);
byte[] buffer = new byte[102400];
int i = 0;
while ((i = inFile.read(buffer)) != -1) {
outFile.write(buffer, 0, i);
}//end while
inFile.close();
outFile.close();
System.out.println("复制成功");
}//end try
catch (Exception e) {
System.out.println(e.toString());
}//end catch
}//end copyFile

/*删除文件方法*/
public boolean deleteFile(String sPath) {
System.out.println("执行删除文件操作 源文件路径"+servletContext.getRealPath("/uploads/styleItem")+sPath);

boolean flag = false;
File file = new File(servletContext.getRealPath("/uploads/styleItem")+sPath);
// 路径为文件且不为空则进行删除
if (file.isFile() && file.exists()) {
file.delete();
flag = true;
}
return flag;
}

}

时间: 2024-10-11 14:21:04

java File处理的相关文章

An error occurred at line: 1 in the generated java file问题处理

tomcat6启动后,加载jsp页面报错,提示无法将jsp编译为class文件,主要报错信息如下: An error occurred at line: 1 in the generated java file 最后确认该错误原因为:tomcat6不支持jdk1.8版本 修改jdk为1.7,刷新工程,通过!

java File类

今天我要总结一下java File类.这个是一个很重要的类. 首先是我画的思维导图. 还写了一些自己写的代码. /** * Date : 2017/6/24 * Author : Hsj * Description : */ public class Demo { /** * File(pathname)表示文件或文件夹路径 * File(String parent,child); * File(File parent,child); */ @Test public void fun() { /

Java File操作汇总

作者:卿笃军 原文地址:http://blog.csdn.net/qingdujun/article/details/41223841 本文通过大量的示例,介绍和讲解了Java File操作. 1)创建文件  2)删除文件  3)判断文件是否存在  4)创建文件夹  5)文件类型判断  6)获取文件信息 7)获取目录下文件名  8)递归打印所有文件名  9)递归删除整个文件夹  10)Properties类 11)SequenceInputStream类:连接多个流  12)对象序列化实现Ser

JAVA File类 分析(三)

前面两篇与大家一起研究了unix下的文件系统,本篇将和大家一起分析 文件的属性和文件夹. ok,废话不说,先来段代码 #include <stdio.h> #include <sys/types.h> #include <dirent.h> void do_ls(char[]); void main(int ac,char *av[]){ if(ac==1) do_ls("."); else{ while(--ac){ printf("%s

Java File类方法使用详解

Java File类的功能非常强大,利用java基本上可以对文件进行所有操作.文本将对Java File 文件操作的类详细的分析,并将File类中的常用方法进行简单介绍. 构造函数 public class FileDemo { public static void main(String[] args) { //构造函数File(String pathname) File f1 = new File("D:\\a\\1.txt"); //File(String parent,Stri

java file文件类操作使用方法大全

1.构造函数 [java] view plaincopy public class FileDemo { public static void main(String[] args){ //构造函数File(String pathname) File f1 =new File("c:\\zuidaima\\1.txt"); //File(String parent,String child) File f2 =new File("c:\\zuidaima",&quo

java File类的基本操作

(如果有谁想要这个软件的话,在评论中留一个邮箱吧.) 前几天好几次看到有朋友晒出玩2048刷高分的截图,我就想我能不能也做一个2048呢?仔细想了想2048游戏的规律,发现其实逻辑上很简单,也不用研究什么算法,于是我马上觉得我可以很快写出来.当天下午我就用了四个小时完成了2048的基本功能.几天后觉得不满足,于是给我的2048加了存档.读档和后退一步的功能,这样就更好刷分了呢! 使用语言:C#: 平台:Visual Studio 2012 Win Form. 如何完成2048的基本功能呢?204

JAVA File的创建及相对路径绝对路径

http://blog.sina.com.cn/s/blog_9386f17b0100w2vv.html JAVA File的创建及相对路径绝对路径 (2011-12-09 08:27:56) 转载▼ 标签: 杂谈 分类: 技术 File f = new File("D:/test/mytest.txt");//当执行这句话后在内存的栈空间存在一个f的应用,在堆空间里存在一个mytest.txt对象.注意 这个对象只含有文件的属性(如大小,是否可读,修改时间等),不包含文件的内容,所以

java——File类的用法整理

参考:http://www.codeceo.com/article/java-file-class.html 构造函数 public class FileDemo { public static void main(String[] args){ //构造函数File(String pathname) File f1 =new File("c:\\abc\\1.txt"); //File(String parent,String child) File f2 =new File(&qu

Java File类学习 &lt;二&gt;

1.File类提供了删除文件或一个空文件夹的方法,并提供了判断文件或者文件夹是否存在,判断是否为文件.文件夹.是否为隐藏文件.以及是否为绝对路径的方法 package com.fish.file; import java.io.File; /* 删除: delete() 删除文件或一个空文件夹,如果是文件夹且不为空,则不能删除,成功返回true,失败返回false. deleteOnExit() 在虚拟机终止时,请求删除此抽象路径名表示的文件或目录,保证程序异常时创建的临时文件也可以被删除 判断