import java.io.*
/**
*/
public class CopyDirectory {
// 源文件夹
static String url1 = "f:/photos"
// 目标文件夹
static String url2 = "d:/tempPhotos"
public static void main(String args[]) throws IOException {
// 创建目标文件夹
(new File(url2)).mkdirs()
// 获取源文件夹当前下的文件或目录
File[] file = (new File(url1)).listFiles()
for (int i = 0i <file.lengthi++) {
if (file[i].isFile()) {
// 复制文件
copyFile(file[i],new File(url2+file[i].getName()))
}
if (file[i].isDirectory()) {
// 复制目录
String sourceDir=url1+File.separator+file[i].getName()
String targetDir=url2+File.separator+file[i].getName()
copyDirectiory(sourceDir, targetDir)
}
}
}
// 复制文件
public static void copyFile(File sourceFile,File targetFile)
throws IOException{
// 新建文件输入流并对它进行缓冲
FileInputStream input = new FileInputStream(sourceFile)
BufferedInputStream inBuff=new BufferedInputStream(input)
// 新建文件输出流并对它进行缓冲
FileOutputStream output = new FileOutputStream(targetFile)
BufferedOutputStream outBuff=new BufferedOutputStream(output)
// 缓冲数组
byte[] b = new byte[1024 * 5]
int len
while ((len =inBuff.read(b)) != -1) {
outBuff.write(b, 0, len)
}
// 刷新此缓冲的输出流
outBuff.flush()
//关闭流
inBuff.close()
outBuff.close()
output.close()
input.close()
}
// 复制文件夹
public static void copyDirectiory(String sourceDir, String targetDir)
throws IOException {
// 新建目标目录
(new File(targetDir)).mkdirs()
// 获取源文件夹当前下的文件或目录
File[] file = (new File(sourceDir)).listFiles()
for (int i = 0i <file.lengthi++) {
if (file[i].isFile()) {
// 源文件
File sourceFile=file[i]
// 目标文件
File targetFile=new
File(new File(targetDir).getAbsolutePath()
+File.separator+file[i].getName())
copyFile(sourceFile,targetFile)
}
if (file[i].isDirectory()) {
// 准备复制的源文件夹
String dir1=sourceDir + "/" + file[i].getName()
// 准备复制的目标文件夹
String dir2=targetDir + "/"+ file[i].getName()
copyDirectiory(dir1, dir2)
}
}
}
}
//保存图片private void saveImg(HttpServletRequest request,FormFile imgFile,FileForm fileForm){
if (imgFile != null && imgFile.getFileSize() > 0) {
String fileName = imgFile.getFileName()
String sqlPath = "img/" + fileName
//图片所在路径
String savePath = request.getSession().getServletContext().getRealPath("/")+ "img\\" + fileName
System.out.println(fileName)
System.out.println(sqlPath)
System.out.println(savePath)
HttpSession session=request.getSession()
session.setAttribute("savePath", savePath)
session.setMaxInactiveInterval(60*60)
//String savePath1=(String)session.getAttribute("savePath")
// 数据库
fileForm.getFile().setFileEmpPhoto(sqlPath)
// 文件
try {
InputStream input = imgFile.getInputStream()
FileOutputStream output = new FileOutputStream(savePath)
byte[] b = new byte[1024]
while (input.read(b) != -1) {
output.write(b)
b = new byte[1024]
}
output.close()
input.close()
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace()
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace()
}
}
}
文件从本地到服务器的功能,其实是为了解决目前浏览器不支持获取本地文件全路径。不得已而想到上传到服务器的固定目录,从而方便项目获取文件,进而使程序支持EXCEL批量导入数据。
java中文件上传到服务器的指定路径的代码:
在前台界面中输入:
<form method="post" enctype="multipart/form-data" action="../manage/excelImport.do">
请选文件:<input type="file" name="excelFile">
<input type="submit" value="导入" onclick="return impExcel()"/>
</form>
action中获取前台传来数据并保存
/**
* excel 导入文件
* @return
* @throws IOException
*/
@RequestMapping("/usermanager/excelImport.do")
public String excelImport(
String filePath,
MultipartFile excelFile,HttpServletRequest request) throws IOException{
log.info("<<<<<<action:{} Method:{} start>>>>>>","usermanager","excelImport" )
if (excelFile != null){
String filename=excelFile.getOriginalFilename()
String a=request.getRealPath("u/cms/www/201509")
SaveFileFromInputStream(excelFile.getInputStream(),request.getRealPath("u/cms/www/201509"),filename)//保存到服务器的路径
}
log.info("<<<<<<action:{} Method:{} end>>>>>>","usermanager","excelImport" )
return ""
}
/**
* 将MultipartFile转化为file并保存到服务器上的某地
*/
public void SaveFileFromInputStream(InputStream stream,String path,String savefile) throws IOException
{
FileOutputStream fs=new FileOutputStream( path + "/"+ savefile)
System.out.println("------------"+path + "/"+ savefile)
byte[] buffer =new byte[1024*1024]
int bytesum = 0
int byteread = 0
while ((byteread=stream.read(buffer))!=-1)
{
bytesum+=byteread
fs.write(buffer,0,byteread)
fs.flush()
}
fs.close()
stream.close()
}
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)