首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
jspsmart(支持中文下载)
时间:
2015-04-03 19:23:40
阅读:
169
评论:
0
收藏:
0
[点我收藏+]
标签:
将excel文件从jsp页面导入到数据库,先将文件上传到server,然后读取,最后删除掉
上传
//要加encType="multipart/form-data"
<form action="addmore_project.jsp" name="muti" method="post" encType="multipart/form-data">
批量导入项目<input type=file name="daoru" >
<input type=button value="提交" class=buttons >
</form>
<%@ page import="java.sql.*" c%>
<%@ page import="web.CommFunc,web.OperateExcel"%>
<%@ page import="com.jspsmart.upload.*"%>
<%request.setCharacterEncoding("UTF-8");%>
<%
// 新建一个SmartUpload对象/////////******先将文件上传至server
SmartUpload su = new SmartUpload();
// 上传初始化
su.initialize(pageContext);
// 上传文件
su.upload();
//假设有request.getParameter()应该放在su.upload()的后面,否则报错
String filePath = request.getParameter("daoru");
try{
Class.forName(db_forname);
Connection conn= DriverManager.getConnection(db_url,db_user,db_password);
String FilePath = "";
String filename="";
if (su.getFiles().getCount()>0) {
com.jspsmart.upload.File file = su.getFiles().getFile(0);
FilePath = "/upload/temp/";
filename = file.getFileName();
java.io.File f = new java.io.File(application.getRealPath("/")+FilePath);
if(!f.exists()){
f.mkdirs();
}System.out.println(FilePath + filename);
file.saveAs(FilePath + filename);
}
else {
out.println("没有上传文件,请[<a href=‘javascript:history.back();‘>返回</a>]");
}
///////////////////////////////////////////////////
OperateExcel oe = new OperateExcel();
//oe.save_project(oe.readExecel(filePath),conn);
oe.save_projectFive(oe.readExecelFive(application.getRealPath("/")+FilePath + filename),conn);
out.println("<center><span>批量导入成功</span></center>");
//******最后将这个文件删除
java.io.File f1 = new java.io.File(application.getRealPath("/")+FilePath + filename);
if(f1.exists()){
f1.delete();
}
%>
文件下载
<%@ page import="java.sql.*,com.jspsmart.upload.*" c%> // 新建一个SmartUpload对象
SmartUpload su = new SmartUpload();
// 初始化
su.initialize(pageContext);
// 设定contentDisposition为null以禁止浏览器自己主动打开文件,
//保证点击链接后是下载文件。若不设定,则下载的文件扩展名为
//doc时,浏览器将自己主动用word打开它。扩展名为pdf时,
//浏览器将用acrobat打开。
su.setContentDisposition(null);
// 下载文件
su.downloadFile(filename);
//以下两句重要,否则有可能会提示出错:
//java.lang.IllegalStateException: getOutputStream() has already been called for this response
//这个错误的其他解决方法:就是文件開始的<%%>都要紧挨着,不能有空格,更不能有换行,如:
//http://dl2.csdn.net/down4/20070717/17095956994.rarhttp://dl2.csdn.net/down4/20070717/17095956994.rar<%@ page contentType="text/html; charset=GBK" %><%@ page import="java.io.*" %><%
out.clear();
out = pageContext.pushBody();
}
catch (Exception e) {
out.println(e.getMessage());
}
%>
jspsmart(支持中文下载)
标签:
原文地址:http://www.cnblogs.com/bhlsheji/p/4390795.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
36.VUE — 认识 Webpack 和 安装
2021-07-28
【PHP】上传图片翻转问题
2021-07-28
php对数字进行万。亿的转化
2021-07-28
五个 .NET 性能小贴士
2021-07-28
Three.js中显示坐标轴、平面、球体、四方体
2021-07-28
.net 5+ 知新:【1】 .Net 5 基本概念和开发环境搭建
2021-07-27
1.html,css
2021-07-27
基于Docker搭建 Php-fpm + Nginx 环境
2021-07-27
nginx + http + svn
2021-07-27
kubernets kube-proxy的代理 iptables和ipvs
2021-07-26
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!