java拷贝文件夹_java复制文件或文件夹

package com.xuanwu.mtoserver.util;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.io.InputStream;

import java.io.OutputStream;

import java.text.SimpleDateFormat;

import java.util.ArrayList;

import java.util.Iterator;

import java.util.List;

import org.apache.tools.ant.Project;

import org.apache.tools.ant.taskdefs.Zip;

import org.apache.tools.ant.types.FileSet;

import org.dom4j.Document;

import org.dom4j.DocumentHelper;

import org.dom4j.Element;

import com.xuanwu.smap.comapi.SmapMtMessage;

import sun.misc.BASE64Decoder;

import sun.misc.BASE64Encoder;

/***@authorToby 通用工具类*/

public class Utils {

/***@paramargs

*@throwsException

*@throwsIOException*/

public static void main(String[] args) throws IOException, Exception {

//TODO Auto-generated method stub//File file = new File("D:/user/mms.xml");//System.out.println(file.renameTo(new File("D:/user/mms5.xml")));//1//compress("D:/user/test", "D:/user/test.zip");

/** String fileName = "D:/user/88.zip"; try {

* System.out.println(encryptBASE64(readFileToBytes(fileName))); } catch

* (Exception e) { // TODO Auto-generated catch block

* e.printStackTrace(); }*/

/** String mi

* ="UEsDBBQACAA";

* RandomAccessFile inOut = new RandomAccessFile(

* "D:/user/sample.","rw"); inOut.write(decryptBASE64(mi));

* inOut.close();*/

//System.out.println(new String(decryptBASE64("5rWL6K+V"),"utf-8"));//2//String xml =//createXML("1828","qww","123456","10658103619033","15918542546",encryptBASE64("两款茶饮润肺护肤防过敏".getBytes()),encryptBASE64(readFileToBytes("D:/user/test.zip")));//System.out.println(xml);        /** String xml = "<?xml  version=\"1.0\" encoding=\"UTF-8\"

* standalone=\"yes\"?>

* xmlns=\"http://www.aspirehld.com/iecp/TaskDataTransfer4ERsp\">2000没有获得IP鉴权!

";

*

* Document doc = DocumentHelper.parseText(xml); // 将字符串转为XML Element

* rootElt = doc.getRootElement(); // 获取根节点

*

* String resultCode = rootElt.element("ResultCode").getTextTrim();

* String TaskId = rootElt.element("TaskId").getTextTrim(); String

* ResultMSG = rootElt.element("ResultMSG").getTextTrim();

* System.out.println(" "+resultCode+" "+TaskId+" "+ResultMSG);*/

}

/*** BASE64解密

*

*@paramkey

*@return*@throwsException*/

public static byte[] decryptBASE64(String key) throws Exception {

return (new BASE64Decoder()).decodeBuffer(key);

}

/*** BASE64加密

*

*@paramkey

*@return*@throwsException*/

public static String encryptBASE64(byte[] key) throws Exception {

return (new BASE64Encoder()).encodeBuffer(key);

}

/*** 获取路径下所有文件名

*

*@parampath

*@return*/

public static String[] getFile(String path) {

File file = new File(path);

String[] name = file.list();

return name;

}

/***

*@paramsourceDirPath

*@paramtargetDirPath

*@throwsIOException*/

public static void copyDir(String sourceDirPath, String targetDirPath) throws IOException {

//创建目标文件夹        (new File(targetDirPath)).mkdirs();

//获取源文件夹当前下的文件或目录        File[] file = (new File(sourceDirPath)).listFiles();

for (int i = 0; i 

if (file[i].isFile()) {

//复制文件                String type = file[i].getName().substring(file[i].getName().lastIndexOf(".") + 1);

if (type.equalsIgnoreCase("txt"))

FileUtil.copyFile(file[i], new File(targetDirPath + file[i].getName()), MTOServerConstants.CODE_UTF_8,

MTOServerConstants.CODE_GBK);

else

FileUtil.copyFile(file[i], new File(targetDirPath + file[i].getName()));

}

if (file[i].isDirectory()) {

//复制目录                String sourceDir = sourceDirPath + File.separator + file[i].getName();

String targetDir = targetDirPath + File.separator + file[i].getName();

FileUtil.copyDirectiory(sourceDir, targetDir);

}

}

}

/*** 读取文件中内容

*

*@parampath

*@return*@throwsIOException*/

public static String readFileToString(String path) throws IOException {

String resultStr = null;

FileInputStream fis = null;

try {

fis = new FileInputStream(path);

byte[] inBuf = new byte[2000];

int len = inBuf.length;

int off = 0;

int ret = 0;

while ((ret = fis.read(inBuf, off, len)) > 0) {

off += ret;

len -= ret;

}

resultStr = new String(new String(inBuf, 0, off, MTOServerConstants.CODE_GBK).getBytes());

} finally {

if (fis != null)

fis.close();

}

return resultStr;

}

/*** 文件转成字节数组

*

*@parampath

*@return*@throwsIOException*/

public static byte[] readFileToBytes(String path) throws IOException {

byte[] b = null;

InputStream is = null;

File f = new File(path);

try {

is = new FileInputStream(f);

b = new byte[(int) f.length()];

is.read(b);

} finally {

if (is != null)

is.close();

}

return b;

}

/*** 将byte写入文件中

*

*@paramfileByte

*@paramfilePath

*@throwsIOException*/

public static void byteToFile(byte[] fileByte, String filePath) throws IOException {

OutputStream os = null;

try {

os = new FileOutputStream(new File(filePath));

os.write(fileByte);

os.flush();

} finally {

if (os != null)

os.close();

}

}

/*** 将目录文件打包成zip

*

*@paramsrcPathName

*@paramzipFilePath

*@return成功打包true 失败false*/

public static boolean compress(String srcPathName, String zipFilePath) {

if (strIsNull(srcPathName) || strIsNull(zipFilePath))

return false;

File zipFile = new File(zipFilePath);

File srcdir = new File(srcPathName);

if (!srcdir.exists())

return false;

Project prj = new Project();

Zip zip = new Zip();

zip.setProject(prj);

zip.setDestFile(zipFile);

FileSet fileSet = new FileSet();

fileSet.setProject(prj);

fileSet.setDir(srcdir);

zip.addFileset(fileSet);

zip.execute();

return zipFile.exists();

}

/*** 判空字串

*

*@paramstr

*@return为空true*/

public static boolean strIsNull(String str) {

return str == null || str.equals("");

}

/*** 折分数组

*

*@paramary

*@paramsubSize

*@return*/

public static List> splitAry(Object[] ary, int subSize) {

int count = ary.length % subSize == 0 ? ary.length / subSize : ary.length / subSize + 1;

List> subAryList = new ArrayList>();

for (int i = 0; i 

int index = i * subSize;

List list = new ArrayList();

int j = 0;

while (j 

list.add(ary[index++]);

j++;

}

subAryList.add(list);

}

return subAryList;

}

/***@parammobile

*@return*/

public static String ArrayToString(Object[] mobile) {

String destId = "";

for (Object phone : mobile) {

destId += " " + (String) phone;

}

return destId.trim();

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值