jsp上传文件的问题

jsp上传文件的问题,第1张

用JSP实现文件上传功能,参考如下:

UploadExample.jsp

<%@ page contentType="text/htmlcharset=gb2312"%>

<html>

<title><%= application.getServerInfo() %></title>

<body>

上传文件程序应用示例

<form action="doUpload.jsp" method="post" enctype="multipart/form-data">

<%-- 类型enctype用multipart/form-data,这样可以把文件中的数据作为流式数据上传,不管是什么文件类型,均可上传。--%>

请选择要上传的文件<input type="file" name="upfile" size="50">

<input type="submit" value="提交">

</form>

</body>

</html>

doUpload.jsp

<%@ page contentType="text/htmlcharset=GBK" %>

<%@ page import="java.io.*"%>

<%@ page import="java.util.*"%>

<%@ page import="javax.servlet.*"%>

<%@ page import="javax.servlet.http.*"%>

<html><head><title>upFile</title></head>

<body bgcolor="#ffffff">

<%

//定义上载文件的最大字节

int MAX_SIZE = 102400 * 102400

// 创建根路径的保存变量

String rootPath

//声明文件读入类

DataInputStream in = null

FileOutputStream fileOut = null

//取得客户端的网络地址

String remoteAddr = request.getRemoteAddr()

//获得服务器的名字

String serverName = request.getServerName()

//取得互联网程序的绝对地址

String realPath = request.getRealPath(serverName)

realPath = realPath.substring(0,realPath.lastIndexOf("\\"))

//创建文件的保存目录

rootPath = realPath + "\\upload\\"

//取得客户端上传的数据类型

String contentType = request.getContentType()

try{

if(contentType.indexOf("multipart/form-data") >= 0){

//读入上传的数据

in = new DataInputStream(request.getInputStream())

int formDataLength = request.getContentLength()

if(formDataLength >MAX_SIZE){

out.println("<P>上传的文件字节数不可以超过" + MAX_SIZE + "</p>")

return

}

//保存上传文件的数据

byte dataBytes[] = new byte[formDataLength]

int byteRead = 0

int totalBytesRead = 0

//上传的数据保存在byte数组

while(totalBytesRead <formDataLength){

byteRead = in.read(dataBytes,totalBytesRead,formDataLength)

totalBytesRead += byteRead

}

//根据byte数组创建字符串

String file = new String(dataBytes)

//out.println(file)

//取得上传的数据的文件名

String saveFile = file.substring(file.indexOf("filename=\"") + 10)

saveFile = saveFile.substring(0,saveFile.indexOf("\n"))

saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1,saveFile.indexOf("\""))

int lastIndex = contentType.lastIndexOf("=")

//取得数据的分隔字符串

String boundary = contentType.substring(lastIndex + 1,contentType.length())

//创建保存路径的文件名

String fileName = rootPath + saveFile

//out.print(fileName)

int pos

pos = file.indexOf("filename=\"")

pos = file.indexOf("\n",pos) + 1

pos = file.indexOf("\n",pos) + 1

pos = file.indexOf("\n",pos) + 1

int boundaryLocation = file.indexOf(boundary,pos) - 4

//out.println(boundaryLocation)

//取得文件数据的开始的位置

int startPos = ((file.substring(0,pos)).getBytes()).length

//out.println(startPos)

//取得文件数据的结束的位置

int endPos = ((file.substring(0,boundaryLocation)).getBytes()).length

//out.println(endPos)

//检查上载文件是否存在

File checkFile = new File(fileName)

if(checkFile.exists()){

out.println("<p>" + saveFile + "文件已经存在.</p>")

}

//检查上载文件的目录是否存在

File fileDir = new File(rootPath)

if(!fileDir.exists()){

fileDir.mkdirs()

}

//创建文件的写出类

fileOut = new FileOutputStream(fileName)

//保存文件的数据

fileOut.write(dataBytes,startPos,(endPos - startPos))

fileOut.close()

out.println(saveFile + "文件成功上载.</p>")

}else{

String content = request.getContentType()

out.println("<p>上传的数据类型不是multipart/form-data</p>")

}

}catch(Exception ex){

throw new ServletException(ex.getMessage())

}

%>

</body>

</html>

运行方法,将这两个JSP文件放在同一路径下,运行UploadExample.jsp即可。

你说的是不是不知道怎么样取文件名啊?

在JSP中写:

<jsp:useBean id="smart" scope="page" class="com.jspsmart.upload.SmartUpload"/>

<%

smart.initialize(pageContext)

smart.upload()

//取得文件名

String fileName = smart.getFiles().getFile(0).getFileName()

smart.save("/uploadfiles")

%>

既然你现在有了一个文件名fileName,那么就将它做一个符串保存到数据库中去吧.如果你还没有安装数据库,也没有建立过数据库连接,Google一下或去下面的网址看看吧

http://www.west263.com/info/html/chengxusheji/Javajishu/20080225/34458.html

<%@ page language="java" contentType="text/htmlcharset=UTF-8" pageEncoding="UTF-8"%>

<%@ page language="java" import="java.io.*,com.jspsmart.upload.*"%>

<HTML><HEAD>

<meta http-equiv="Content-Type" content="text/html"charset=UFT-8>

<TITLE>Save upload </TITLE>

</HEAD>

<BODY>

<%

// 将上传文件全部保存到指定目录创建文件夹使用绝对路径

String uploadPath =request.getRealPath("/")+"/images/"

java.io.File fdir = new java.io.File(uploadPath)

if(!fdir.exists()){

fdir.mkdirs()

}

SmartUpload su = new SmartUpload()

su.initialize(pageContext)

// 设定上传限制

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

//su.setMaxFileSize(5120000)//5M

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

//su.setTotalMaxFileSize(25600000)//5M*5

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

//su.setAllowedFilesList("gif,jpg,png,bmp,GIF,JPG,PNG,BMP")

// 4.设定禁止上传的文件(通过扩展名限制),禁止上传带有exe,bat,

//jsp,htm,html扩展名的文件和没有扩展名的文件。

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

// 上传文件

su.upload()

String x = su.getRequest().getParameter("x")

out.println("<table border='1' width='560'>")

out.println("<tr>")

out.println("<th>文件名</th>")

out.println("<th>文件大小</th>")

out.println("</tr>")

for(int i=0i<su.getFiles().getCount()i++){

com.jspsmart.upload.File file=su.getFiles().getFile(i)

if(file.isMissing()){

continue

}

out.println("<tr>")

out.println("<td>"+file.getFileName()+"</td>")

out.println("<td>"+file.getSize()+"</td>")

out.println("</tr>")

String ext="."+file.getFileExt()

String strtemp=uploadPath+"/"+x+ext

file.saveAs(strtemp)

}

out.println("</table>")

%>

</body>

</html>


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存