import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

import javax.servlet.http.HttpServletResponse;

public class FileHelper {

static File file ;

/**

* @删除文件

* input 输入 output 输出

* */

public static boolean deleteFile(String url){

boolean flag = false;

try{

if(null == file){

file = new File(url);

if(file.isFile()){

if(file.canWrite()){

file.delete();

}

flag = true;

}

}else{

if(url == file.getPath()){

file.delete();

flag = true;

}

}

}catch(Exception e){

flag = false ;

e.printStackTrace();

}finally{

file = null;

System.gc();

}

return flag;

}

/**

* 新建目录

* @param folderPath String 如 c:/fqf

* @return boolean

*/

public static 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) {

e.printStackTrace();

}

}

/**

* 复制单个文件

* @param oldPath String 原文件路径 如:c:/fqf.txt

* @param newPath String 复制后路径 如:f:/fqf.txt

* @return boolean

*/

public static void copyFile(String oldPath, String newPath) {

try {

int bytesum = 0;

int byteread = 0;

File oldfile = new File(oldPath);

if (oldfile.exists()) { //文件存在时

InputStream inStream = new FileInputStream(oldPath); //读入原文件

FileOutputStream fs = new FileOutputStream(newPath);

byte[] buffer = new byte[1444];

int length;

while ( (byteread = inStream.read(buffer)) != -1) {

bytesum += byteread; //字节数 文件大小

fs.write(buffer, 0, byteread);

}

inStream.close();

fs.close();

}

}

catch (Exception e) {

e.printStackTrace();

}

}

/**

* 使用文件通道的方式复制文件

* @param s  源文件

* @param t  复制到的新文件

*/

public static void fileChannelCopy(String srcPath,String outpath) {

File s = new File(srcPath);

File t = new File(outpath);

FileInputStream fi = null;

FileOutputStream fo = null;

FileChannel in = null;

FileChannel out = null;

try {

fi = new FileInputStream(s);

fo = new FileOutputStream(t);

in = fi.getChannel();//得到对应的文件通道

out = fo.getChannel();//得到对应的文件通道

in.transferTo(0, in.size(), out);//连接两个通道,并且从in通道读取,然后写入out通道

} catch (IOException e) {

e.printStackTrace();

} finally {

try {

fi.close();

in.close();

fo.close();

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

}

/**

* 上传文件

* @param upFile 上传文件

* @param targetFile 目标文件

* @param b

* @return

*/

public static boolean fileUpload(File upFile , File targetFile , byte[] b){

InputStream is = null ;

OutputStream os = null ;

try{

is =  new FileInputStream(upFile);

os= new FileOutputStream(targetFile);

int length = 0;

while((length = is.read(b))>0){

os.write(b, 0, length);

}

}catch(Exception e){

e.printStackTrace();

return false;

}finally{

try {

if(null != is){

is.close();

}if(null != os){

os.close();

}

} catch (IOException e) {

e.printStackTrace();

}

}

return true;

}

/**

* 删除文件

* @param f

* @return

*/

public static boolean deleteFile(File f){

if (f.isFile())

f.delete();

return true;

}

/**

* 删除文件夹

* @param f

* @return

*/

public static boolean deleteDir(File f){

if(f.isDirectory()){

File[] files = f.listFiles();

for(int i=0;i<files.length;i++){

if(files[i].isDirectory()) deleteDir(files[i]);

else deleteFile(files[i]);

}

}

f.delete();

return true ;

}

/**

* 文件下载

* @param filePath 文件路径

* @param fileType 文件类型

* @param downName 下载文件名称

* @param response 响应

*/

public static void downLoadFile(String filePath,String fileType ,String downName,HttpServletResponse response){

OutputStream out = null;// 创建一个输出流对象

String headerStr = downName;

try{

InputStream is=new FileInputStream(filePath);

out = response.getOutputStream();//

headerStr =new String( headerStr.getBytes("gb2312"), "ISO8859-1" );//headerString为中文时转码

response.setHeader("Content-disposition", "attachment; filename="+ headerStr+"."+fileType);// filename是下载的xls的名,建议最好用英文

response.setContentType("application/msexcel;charset=GB2312");// 设置类型

response.setHeader("Pragma", "No-cache");// 设置头

response.setHeader("Cache-Control", "no-cache");// 设置头

response.setDateHeader("Expires", 0);// 设置日期头

// 输入流 和 输出流

int len = 0;

byte[] b = new byte[1024];

while ((len = is.read(b)) != -1) {

out.write(b, 0, len);

}

is.close();

out.flush();

out.close();

} catch (Exception e) {

e.printStackTrace();

} finally {

try {

if (out != null) {

out.close();

}

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

FileHelper-文件操作工具的更多相关文章

  1. Code片段 : .properties属性文件操作工具类 & JSON工具类

    摘要: 原创出处:www.bysocket.com 泥瓦匠BYSocket 希望转载,保留摘要,谢谢! “贵专” — 泥瓦匠 一.java.util.Properties API & 案例 j ...

  2. [svc]find+xargs/exec重命名文件后缀&文件操作工具小结

    30天内的文件打包 find ./test_log -type f -mtime -30|xargs tar -cvf test_log.tar.gz awk运算-解决企业统计pv/ip问题 find ...

  3. 文件操作工具类: 文件/目录的创建、删除、移动、复制、zip压缩与解压.

    FileOperationUtils.java package com.xnl.utils; import java.io.BufferedInputStream; import java.io.Bu ...

  4. JAVA文件操作工具类(读、增、删除、复制)

    使用JAVA的JFinal框架 1.上传文件模型类UploadFile /** * Copyright (c) 2011-2017, James Zhan 詹波 (jfinal@126.com). * ...

  5. Android文件操作工具类(转)

    Android文件操作工具类(转)  2014/4/3 18:13:35  孤独的旅行家  博客园 这个工具类包含Android应用开发最基本的几个文件操作方法,也是我第一次发博客与大家分享自己写的东 ...

  6. 小米开源文件管理器MiCodeFileExplorer-源码研究(4)-文件操作工具类FileOperationHelper

    文件操作是非常通用的,注释都写在源代码中了,不多说~需要特别说明的是,任务的异步执行和IOperationProgressListener.拷贝和删除等操作,是比较费时的,采用了异步执行的方式~ An ...

  7. C#文件操作工具类

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.I ...

  8. Java文件操作工具类(复制、删除、重命名、创建路径)

    import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import ...

  9. 7、Python文件操作工具 openpyxl 工具 2

    创建一个工作簿 使用openpyxl没有必要先在系统中新建一个.xlsx,我们需要做的只需要引入Workbook这个类,接着开始调用它. >>> from openpyxl impo ...

  10. 6、Python文件操作工具 openpyxl 工具

    #-*- coding:utf-8 -* from  openpyxl.reader.excel  import  load_workbook import  MySQLdb import  time ...

随机推荐

  1. SSH爆破应急响应

    问题发现 登录云主机,根据提示消息,发现正遭受SSH爆破攻击,IP地址为159.65.230.189 查看登录相关安全日志:tail -f /var/log/secure,发现其他尝试爆破IP106. ...

  2. linux初始化shell脚本

    #!/bin/bash # this is a init script ping -c 1 -i 0.1 -W 1 baidu.com a=`echo $?` if [ ${a} == 0 ];the ...

  3. Buuctf-------WEB之admin

    1.抓包扫描一把梭,无事发生地说 注释里发现 万能密码试试,报错 用的flask,pythonweb 后面发现报错页面可以调试,嘿嘿嘿 康康我们发现了什么 拿去破解,无果 于是打算代码拿下来康康,em ...

  4. python预课04 列表,元祖,统计值计算示例,py文件转为EXE文件,爬虫初步学习

    列表,元组 #list l1 = [1, 2, 3, '高弟弟'] #定义一个列表 #增 l1.append("DSB") #最后增加"DSB"的元素 #删 l ...

  5. the_permalink()和get_permalink()的区别

    wordpress中the_permalink()是用于posts loop循环中(判断是否有文章,如果有文章则展示出来:如果没有文章就显示没有文章),常用于文章分类列表和文章页的模板中,用法如下 & ...

  6. django-支付宝支付

    安装python-alipay-sdk pip install python-alipay-sdk --upgrade 配置 视图函数orders/views.py # 订单支付 # /order/p ...

  7. (4)给树莓派安装中文输入法Fcitx及Google拼音输入法

    sudo apt-get install fcitx fcitx-googlepinyin fcitx-module-cloudpinyin fcitx-sunpinyin 安装完毕,重启即可.

  8. 2.学习SpringMVC注解入门篇

    一.SpringMVC执行流程 . 二.创建项目学习SpringMVC注解 按照我之前的SpringMVC创建项目,首先创建一个项目springmvc01,配置好pom.xml,web.xml,spr ...

  9. Filters in ASP.NET Core

    Filters in ASP.NET Core allow code to be run before or after specific stages in the request processi ...

  10. File Browser文件资源服务器

    要是想一键启动的,这里有个封装版本的,上传到服务器,执行sh命令就能直接启动,也可以修改配置 链接:https://pan.baidu.com/s/1oVP5DrEQSV9hQmnF2bzM9A提取码 ...