在servlet中怎样上传文件?

在servlet中怎样上传文件?,第1张

//新建一个Smartupload对象

SmartUpload

su=new

SmartUpload()

//上传初始化

su.initialize(pageContext)

//设定上传限度

//1.限定每个上传文件的最大长度

//su.setMaxFileSize(100000)

//2.限制总上传数据的长度。

//su.setTotalMaxFileSize(20000)

//3.设定允许上传的文件(通过扩展名限制),仅允许doc,txt文件。

//su.setAllowFilesList("doc,text")

//4.设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat,jsp,htm,html扩展名的文件或没有扩展名的文件基核运

//su.setDeniedDilesList("exe,bat,jsp,html,htm,,")

//上传文件

su.upload()

//将上传文件全部保存到指定目录

int

count=su.save("/upload")

out.println(count+"个上传文件成功!<br>")

//利用Request对象获取参数之值

out.println("test="+su.getRequest().getParameter("test")+"<br><br>")

//逐一提取上传文件信息,同时可保存文件。

for(int

i=0i<su.getFiles().getCount()i++)

{

com.jspsmart.upload.File

file=su.getFiles().getFile(i)

//若文件不存在则继续

if(file.isMissing())

continue

//显示当前文件信息

out.println("<table

border=1>")

out.println("<tr><td>表单项名(FiledName)</td><td>"+file.getFieldName()+"</tr></tr>")

out.println("<tr><td>文件长度(Size)</td><td>"+file.getSize()+"</td><td>")

out.println("<tr><td>文件名(FileName)</td>搏梁<td>"+file.getFileName()+"</tr></tr>")

out.println("<tr><td>文件扩展名(FiledExt)</td><td>"+file.getFileExt()+"</tr></tr>")

out.println("<tr><td>文件全名(FiledPathName)</td><氏碧td>"+file.getFilePathName()+"</tr></tr>")

out.println("</table><br>")

//将文件另存

//file.saveAs("/upload/"+myFile.getFileName())

//另存到以web应用程序的根目录为文件根目录的目录下

//file.saveAs("/upload/"+myFile.getFileName(),su.SAVE_VIRTUAL)

//另存到 *** 作系统的根目录为文件根目录的目录下

//file.safeAs("c://temp//"+myFile.getFileName(),su.SAVE_PHYSICAL)

}

上面就是了。。。。祝你好运哈!

文件从本地到服务器的功能,其实是为了解决目前浏览器不支持获取本地文件全激陆郑路径。不得已而想到上传到服务器的固定目录,从而方便项目获取文件,进而使程序支持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()

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12232644.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-22
下一篇 2023-05-22

发表评论

登录后才能评论

评论列表(0条)

保存