Chinaunix首页 | 论坛 | 博客
  • 博客访问: 136416
  • 博文数量: 22
  • 博客积分: 1415
  • 博客等级: 上尉
  • 技术积分: 230
  • 用 户 组: 普通用户
  • 注册时间: 2006-03-23 10:19
文章分类

全部博文(22)

文章存档

2010年(1)

2008年(6)

2007年(12)

2006年(3)

我的朋友

分类: Java

2007-03-31 09:22:06

upload.html
 
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>


 
   
   
    My JSP 'Upload_form.jsp' starting page
   
 
 
    
 
 
 
 
 
 
   

   
   

   
   

 

 
 
 
upload.jsp

 <%
  //准备上传文件
  smart.initialize(pageContext);
  //准备上传
  smart.upload();
  //保存
  smart.save("/upload");
  String name = smart.getRequest().getParameter("user") ;
  String pic = smart.getFiles().getFile(0).getFileName();  //得到上传文件的名称
  out.println(name);
  out.println(pic);
  //out.println("");
  %>
 
 
阅读(4775) | 评论(4) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2008-03-25 16:23:49

http://www.javatx.cn/upfiles/club/20067/2006072717380669132.rar 这个是smartupload的下载地址,谢谢楼主哦,呵呵

chinaunix网友2008-03-25 16:22:33

呵呵,真的不错,谢谢了,我弄成功了!

chouxiaozi2008-01-23 13:48:28

是一个上传的类,人家写好的

胡艳艳2008-01-21 22:28:06

smart 是什么啊,有没有定义的方法啊。我太笨了,都看不懂!!