开发工具:
文件大小: 687byte
下载次数: 0
上传时间: 2011-09-20
详细说明: package com.scce.servlet; import java.io.FileOutputStream; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.ServletInputStream; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public class PhotoServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doPost(request, response); } public void doPost(HttpSer vletRequest request, HttpServletResponse response) throws ServletException, IOException { String type=request.getParameter("myType"); String encoding="UTF-8"; if(type.equals("upload")){ ServletInputStream sis=request.getInputStream(); int len=request.getContentLength(); int index=0; String tmp=null; boolean isFirst=true; String firstLine=null; int [] iindex=new int[1]; byte[] bytes=new byte[4096]; String filename=null; while((tmp=readLine(bytes,iindex,sis,encoding))!=null){ if(isFirst){ firstLine=tmp; isFirst=false; } index=tmp.indexOf("finename="); if(index!=-1){ String tailString = tmp.substring(index+10); if(tailString != null){ int ii=tailString.indexOf("\""); filename=tailString.substring(0,ii); } System.out.println(tmp); break; } filename=getName(filename); if(filename!=null){ filename="file.out1"; } String filepath="e:/"+filename; FileOutputStream fos=new FileOutputStream(filepath); String endFlag=firstLine.substring(0,firstLine.length()-2)+"--"+firstLine.substring(firstLine.length()-2); String contentType=readLine(bytes,iindex,sis,encoding); if(contentType!=null){ if(contentType.indexOf("Content-Type")==-1){ System.out.println(contentType); }else{ System.out.println("the head of file:"+readLine(bytes,iindex,sis,encoding)); } } boolean tt=false; int mark=0; byte[] backups=new byte[4096]; while((tmp=readLine(backups,iindex,sis,encoding))!=null){ if(endFlag.equals(tmp)){ if(mark>2){ fos.write(backups,0,mark-2); fos.flush(); } break; }else{ if(tt){ fos.write(backups,0,mark); fos.flush(); } mark=iindex[0]; for(int i=0;i
(系统自动生成,下载前可以参看下载内容)
下载文件列表
相关说明
- 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
- 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。
- 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
- 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
- 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
- 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.