`
eastPoint
  • 浏览: 54009 次
  • 性别: Icon_minigender_1
  • 来自: 湖北武汉
社区版块
存档分类
最新评论

common-uploadfiles.1.2版本

    博客分类:
  • j2ee
阅读更多

servlet中测试成功:

java 代码
  1. String filesystempath = request.getSession().getServletContext().getRealPath("/");   
  2. ServletRequestContext srcontext = new ServletRequestContext(request);   
  3. System.out.println(srcontext.getCharacterEncoding());   
  4. System.out.println(srcontext.getContentType());   
  5. boolean isMultipart = ServletFileUpload.isMultipartContent(request);   
  6. if (isMultipart) {   
  7.     ServletFileUpload upload = new ServletFileUpload();   
  8.     try {   
  9. //Parse the request   
  10.     FileItemIterator iter = upload.getItemIterator(request);   
  11.     while (iter.hasNext()) {   
  12.         FileItemStream item = iter.next();   
  13.         //System.out.println(item.getContentType());
  14.         InputStream stream = item.openStream();   
  15.         if (item.isFormField()) {   
  16.                                            //这里处理form中的其它表单域内容   
  17.         } else {   
  18.                                            //这里处理上传对象   
  19.         String clientrealpath = item.getName();   
  20.         clientrealpath = clientrealpath.replace("\\", "\\\\");   
  21. //System.out.println(clientrealpath);   
  22. String filename = StringHelper.getFileName(clientrealpath);   
  23. //System.out.println(filesystempath+filename);   
  24. File newfile = new File(filesystempath+filename);   
  25. OutputStream os =new FileOutputStream(newfile);   
  26. byte[] b = new byte[8192];   
  27. int len;   
  28. while ((len = stream.read(b)) != -1) {   
  29. os.write(b, 0, len);   
  30. os.flush();   
  31. os.close();   
  32. stream.close();   
  33. // Process the input stream   
  34. }   
  35. }   
  36. catch (FileUploadException e) {   
  37. e.printStackTrace();   
  38. }   
  39. }  
分享到:
评论
1 楼 xuey210 2009-10-31  
struts 的action 中一定不能成功

相关推荐

Global site tag (gtag.js) - Google Analytics