时间:2021-05-19
本文讲解如何用java实现把数据库的数据写入到txt中 并实现类似下载软件的样子在网页中弹出下载.
package datatest;import java.io.BufferedOutputStream;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.net.URLEncoder;import java.sql.ResultSet;import java.sql.SQLException;import javax.servlet.ServletException;import javax.servlet.ServletOutputStream;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import bean.ConnDB;public class export extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //设置编码 response.setCharacterEncoding("UTF-8"); //连接数据库 ConnDB conn = new ConnDB(); ServletOutputStream outputstream = null; BufferedOutputStream buffoutputstream = null; String txt_name = "导出的txt文件名.txt";//导出的txt文件名 try { response.reset();// 清空输出流 response.setContentType("text/plain;charset=utf-8"); //设置txt文件名称编码,防止中文乱码 response.setHeader("Content-disposition", "attachment; filename="+URLEncoder.encode(txt_name, "UTF-8")); StringBuffer write = new StringBuffer(); outputstream=response.getOutputStream(); buffoutputstream = new BufferedOutputStream(outputstream); //根据id查询数据库 int id=Integer.parseInt(request.getParameter("id")); String sql = "select a.id,name,account,password "; sql+="from test_rank a "; sql+="left join test_join b on b.id=a.id where a.id="+id; ResultSet rs = conn.doQuery(sql); String content=""; try { while(rs.next()) { //把数据库中读取的数据写入 content=rs.getString("name")+"\r\n";//在txt中换行为\t\n write.append(content); content=rs.getString("account")+"\r\n"; write.append(content); break; } } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } //write.append(content); //设置编码 防止中文乱码 String str = new String(write.toString().getBytes(),"gbk"); buffoutputstream.write(str.toString().getBytes("gbk")); buffoutputstream.flush(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { if (outputstream != null) try { outputstream.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } if (buffoutputstream != null) try { buffoutputstream.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { this.doGet(request, response); }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了php实现连接access数据库并转txt写入的方法。分享给大家供大家参考,具体如下:这里的代码实现PHP读取手机归属地并导入txt文件的功能(文
一、以下是数据库的写入的html程序,你可以加入密码功能。把密码做成变量发入下面那个写入的php程序。这样就实现了密码保护了:数据库数据库管理程序查看数据库资料
本文示例主要实现了Android获取assets文件夹中的数据并将其写入到SD卡中,该程序实现的步骤主要为:首先读取assets文件夹中的数据库,再将其写入到S
上篇文章都是关于界面的东西,下面写关于如何把无刷新的把数据写入到数据库中。当我们改变某一个人或某几个人的某项分值实现无刷新写入数据库。首先,我们需要声明XMLH
通常对用户上传的图片需要保存到数据库中。解决方法一般有两种:1、将图片保存的路径存储到数据库;2、将图片以二进制数据流的形式直接写入数据库字段中。以下为具体方法