jsp实现文件上传

来源:互联网 发布:大连市软件行业协会 编辑:程序博客网 时间:2024/05/01 08:19
upload.jsp
<%@ page contentType="text/html; charset=UTF-8"%>
<html>
<head>
<title>upload</title>
</head>
<body bgcolor="#ffffff">

<form name="form1" METHOD="POST" ACTION="receive.jsp" ENCTYPE="multipart/form-data">请选择上传文件:
<INPUT TYPE="FILE" NAME="FILE1" SIZE="50" id="myfile">
<BR>
<INPUT TYPE="SUBMIT" VALUE="Upload">
</form>
</body>
</html>


receive.jsp

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.net.*" %>
<%@ page import="java.io.*" %>
<html>
<head>
<title>
receieve
</title>
</head>
<body bgcolor="#ffffff">
<br>
<%
String tempFile = new String("mytempfile");
       File temp = new File("D:"+File.separator, tempFile);
       FileOutputStream o = new FileOutputStream(temp);
       InputStream fileSource = null;
       fileSource = request.getInputStream();

       byte[] b = new byte[8192];
       int n;

       while((n = fileSource.read(b)) != -1) {
         o.write(b, 0, n);
         o.flush();
       }
       fileSource.close();
       o.close();


       RandomAccessFile rf = new RandomAccessFile(temp, "r");
       rf.readLine();
       String FilePath = rf.readLine();
       int position = FilePath.lastIndexOf('//');
       String filename = new String(FilePath.substring(position+1,FilePath.length()-1).getBytes("ISO-8859-1"),

"UTF-8");
       rf.seek(0);
       long forthEnterPosition = 0;
       int forth = 1;
       while((n = rf.readByte()) != -1 && (forth <= 4)) {
         if(n == 10) {
           forthEnterPosition = rf.getFilePointer();
           forth++;
         }
       }
File FileUploadDir = new File("D:"+File.separator, "upload");
       FileUploadDir.mkdir();

       File savefile = new File("D:"+File.separator+"upload", filename);

       RandomAccessFile rf2 = new RandomAccessFile(savefile, "rw");


       rf.seek(rf.length());
       long endPosition = rf.getFilePointer();

       int j = 1;
       while((endPosition>=0) && (j<=2)) {
         endPosition--;
         rf.seek(endPosition);
         if(rf.readByte() == 10)
         j++;
       }

       rf.seek(forthEnterPosition);
       long startPoint = rf.getFilePointer();
       while(startPoint + 8192L <= endPosition-1) {
         n = rf.read(b);
         startPoint = rf.getFilePointer();
         rf2.write(b, 0, n);
       }

       while(startPoint < endPosition-1) {
         rf2.write(rf.readByte());
         startPoint = rf.getFilePointer();
       }


       rf2.close();
       rf.close();
       temp.delete();
       out.println("file: " + filename + " succeed to upload!");
%>
</html>
原创粉丝点击