package com.nova.common;
import java.io.File;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.Reader;
import java.sql.CallableStatement;
import java.sql.Clob;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Properties;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class DataSync
*/
@WebServlet("/dataSync")
public class DataSync extends HttpServlet {
private static final long serialVersionUID = 1L;
private Connection conn;
private String filePath;
private String orgProvinceId;
private String orgCityId;
private String orgDistrictId;
private String orgTownId;
private String orgVillageId;
/**
* @see HttpServlet#HttpServlet()
*/
public DataSync() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param path
* @see HttpServlet#service(HttpServletRequest request, HttpServletResponse
* response)
*/
protected void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
PrintWriter out=response.getWriter();
out.print("1323443554qqqqqqqqqqq");
// orgProvinceId
orgProvinceId = request.getParameter("orgProvinceId");
// orgCityId
orgCityId = request.getParameter("orgCityId");
// orgDistrictId
orgDistrictId = request.getParameter("orgDistrictId");
// orgTownId
orgTownId = request.getParameter("orgTownId");
// orgVillageId
orgVillageId = request.getParameter("orgVillageId");
String fileName = orgProvinceId + orgCityId + orgDistrictId + orgTownId
+ orgVillageId+".sql";
filePath=request.getRealPath("/") + "/" + fileName;
filePath = new String(filePath.getBytes("ISO-8859-1"), "utf-8");
download(filePath, request, response);
}
private void getDBData() {
try {
Properties props = new Properties();
props.load(DataSync.class
.getResourceAsStream("/configs/database/oracle.properties"));
String driver = props.getProperty("db_driver");
String url = props.getProperty("db_url");
String username = props.getProperty("db_user_name");
String password = props.getProperty("db_password");
Class.forName(driver);
conn = DriverManager.getConnection(url, username, password);
String sql = "{call out_file(?,?,?,?,?,?)}";
CallableStatement cst = conn.prepareCall(sql);
// 输入参数的调用
cst.setString(1, orgProvinceId);
cst.setString(2, orgCityId);
cst.setString(3, orgDistrictId);
cst.setString(4, orgTownId);
cst.setString(5, orgVillageId);
// 输出参数的调用
cst.registerOutParameter(6, java.sql.Types.CLOB);
// 执行存储过程
cst.execute();
// 得到存储过程的输出参数值
Clob syncContent =cst.getClob(6);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
public HttpServletResponse download(String path,
HttpServletRequest request, HttpServletResponse response) {
Reader reader = null;
OutputStreamWriter writerClient = null;
try {
// path是指欲下载的文件的路径。
File file = new File(request.getRealPath("/") + "/" + path);
// 取得文件名。
String filename = file.getName();
// 以流的形式下载文件。
InputStream fis = new BufferedInputStream(new FileInputStream(path));
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
// 清空response
response.reset();
// 设置response的Header
response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes()));
response.addHeader("Content-Length", "" + file.length());
OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
response.setContentType("application/octet-stream");
toClient.write(buffer);
// 清空response
response.reset();
// 设置response的Header
response.addHeader("Content-Disposition", "attachment;filename="
+ new String(filename.getBytes("utf-8"), "ISO-8859-1"));
response.addHeader("Content-Length", "" + file.length());
response.setContentType("application/octet-stream");
Clob syncContent = getDBData();
reader = syncContent.getCharacterStream();
char[] buffer = new char[1024];
int length = 0;
writerClient = new OutputStreamWriter(response.getOutputStream());
while ((length = reader.read(buffer)) != -1) {
System.out.println(buffer);
writerClient.write(buffer, 0, length);
}
writerClient.flush();
} catch (IOException ex) {
ex.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
writerClient.close();
reader.close();
conn.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
return response;
}
// <a href="fileDownLoadServlet?filename=通讯录.xls">哈哈,测试文件下载</a>
}
分享到:
相关推荐
onnxruntime-1.16.0-cp311-cp311-win_amd64.whl
基于springboot的流浪猫狗救助系统源码数据库文档.zip
摘 要 如今的信息时代,对信息的共享性,信息的流通性有着较高要求,因此传统管理方式就不适合。为了让美容院信息的管理模式进行升级,也为了更好的维护美容院信息,美容院管理系统的开发运用就显得很有必要。并且通过开发美容院管理系统,不仅可以让所学的SpringBoot框架得到实际运用,也可以掌握MySQL的使用方法,对自身编程能力也有一个检验和提升的过程。尤其是通过实践,可以对系统的开发流程加深印象,无论是前期的分析与设计,还是后期的编码测试等环节,都可以有一个深刻的了解。 美容院管理系统根据调研,确定其实现的功能主要包括美容用品管理,美容项目管理,美容部位管理,销量信息管理,订单管理,美容项目预约信息管理等功能。 借助于美容院管理系统这样的工具,让信息系统化,流程化,规范化是最终的发展结果,让其遵循实际操作流程的情况下,对美容院信息实施规范化处理,让美容院信息通过电子的方式进行保存,无论是管理人员检索美容院信息,维护美容院信息都可以便利化操作,真正缩短信息处理时间,节省人力和信息管理的成本。 关键字:美容院管理系统,SpringBoot框架,MySQL
numpy-1.21.1-cp39-cp39-linux_armv7l.whl
基于JavaWeb+springboot的宠物救助及领养平台源码数据库文档.zip
基于springboot员工在线餐饮管理系统源码数据库文档.zip
matplotlib-3.5.3-cp37-cp37m-linux_armv7l.whl
基于springboot+web的留守儿童网站源码数据库文档.zip
STM32神舟III号例程源码SysTick系统滴答(神舟III号-库函数版)提取方式是百度网盘分享地址
STM32开发相关软件ISP 程序下载STM32开发相关软件ISP 程序下载提取方式是百度网盘分享地址
onnxruntime-1.17.0-cp310-cp310-win_amd64.whl
Pillow-9.5.0-cp39-cp39-linux_armv7l.whl
基于springboot高性能计算中心的高性能集群共享平台源码数据库文档.zip
SciPy-1.11.1-cp311-cp311-linux_armv7l.whl
主机硬件信息邮件及微信推送
numpy-1.23.4-cp39-cp39-linux_armv7l.whl
基于springboot视频点播系统源码数据库文档.zip
基于springboot竞赛管理系统源码数据库文档.zip
环境说明: 开发语言:python Python版本:3.6.8 数据库:mysql 5.7数据库工具:Navicat11开发软件:pycharm
opencv_python-4.6.0.66-cp37-cp37m-linux_armv7l.whl