用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - html代码库

图片上传

2012-10-06 作者: dota汤举报

[html]代码库

<html>
<head>
<title>
</title>
</head>
<body>
<form action="upload.jsp" method="post" enctype="multipart/form-data">//实现封装
照片名:<input type="text" name="name"/><br>
上传:<input type="file" name="pic"/><br>
上传:<input type="file" name="pic1"/><br>
上传:<input type="file" name="pic2"/><br>
上传:<input type="file" name="pic3"/><br>
<input type="submit" value="上传"/>
</form>
</body>
</html>

<%@ page contentType="html/text;charset=UTF-8"%>

<jsp:useBean id="smart" scope="page" class="org.lxh.smart.SmartUpload"/>//注意应把SmartUpload.jar包放在lib下面
<%
smart.initialize(pageContext);//初始化
smart.upload();//上传

%>

<%
try{
smart.save("/upload/");//保存

}catch(Exception e)
{
e.printStackTrace();
}
%>

重命名图片方法

<%@ page contentType="html/text;charset=UTF-8" %>
<jsp:useBean id="smart" scope="page" class="org.lxh.smart.SmartUpload"/>
<%
smart.initialize(pageContext);
smart.upload();
String ext=smart.getFiles().getFile(0).getFileExt();
String ext1=smart.getFiles().getFile(1).getFileExt();
String ext2=smart.getFiles().getFile(2).getFileExt();
String ext3=smart.getFiles().getFile(3).getFileExt();
%>
<%
String name=smart.getRequest().getParameter("name");

%>
<%
try{
smart.getFiles().getFile(0).saveAs("/upload/"+name+"1."+ext);
smart.getFiles().getFile(1).saveAs("/upload/"+name+"2."+ext1);
smart.getFiles().getFile(2).saveAs("/upload/"+name+"3."+ext2);
smart.getFiles().getFile(3).saveAs("/upload/"+name+"4."+ext3);
 }catch(Exception e)
 {
 e.printStackTrace();
 }
 %>


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...