下载附件

1、设置setContentType为application/x-msdownload
2、设置Content-Disposition为附件形式并指定文件名称attachment;filename=contact.csv
3、根据文件路径创建输入流,response获取输出流
4、写入到输出流
5、删除缓存文件
6、关闭流

@RequestMapping(value = "/exportContact", method = RequestMethod.GET)
private void exportContact(HttpServletRequest request, HttpServletResponse response) {

    DBObject query = new BasicDBObject();
    String loginEmail = null;
    DataOutputStream os = null;
    InputStream is = null;
    String contactPath = null;
    try {
        //TODO:登录人信息,目前从配置文件中读取登陆人邮箱
        loginEmail = PropertyUtil.getMailProperties().getProperty("mail.email");
        query.put("emailAccount", loginEmail);

        //取得收件箱所有数据
        List<DBObject> list = wmPerService.getData(WmPerConstant.MONGODB_COLLECTION_CONTACT, query);

        List<String[]> contacts = new ArrayList<String[]>();
        for (DBObject entity : list) {
            String json = entity.toString();
            WmPerInfoDTO wmPerInfo = com.alibaba.fastjson.JSON.parseObject(json, WmPerInfoDTO.class);
            String[] contact =
                    {
                            wmPerInfo.getPerName(),
                            wmPerInfo.getPerEmail(),
                            wmPerInfo.getPerPhone(),
                            wmPerInfo.getPerProvinceName(),
                            wmPerInfo.getPerCityName(),
                            wmPerInfo.getPerCountyName(),
                            wmPerInfo.getPerStreetName(),
                            wmPerInfo.getPerDetailAddrss(),
                            wmPerInfo.getPerRemark()
                    };
//            {"姓名", "邮箱地址", "手机号码", "省", "市", "县/区", "乡镇/街道", "详细地址", "备注"};
            contacts.add(contact);
        }
        contactPath = CVSUtils.writeCsv(loginEmail, contacts);

        response.setContentType("application/x-msdownload");
        response.setHeader("Content-Disposition", "attachment;filename=contact.csv");
        is = new BufferedInputStream(new FileInputStream(contactPath));
        if (null != is){
            os = new DataOutputStream(response.getOutputStream());
            IOUtils.copy(is, os);
            os.flush();
        }
    } catch (Exception e) {
        logger.error("当前下载的附件不存在,或者下载附件错误", e);
    }
    finally {
        IOUtils.closeQuietly(is);
        IOUtils.closeQuietly(os);
        File file = new File(contactPath);
        file.delete();
    }

}

CSVUtils.java

/**
 * CSV文件导出工具类
 */
public class CVSUtils {
    public static final String FILE_EXTENSIONS = ".csv";
    public static final String CONTACT_FOLDER = "contact";
    public static final String CONTACT_PATH = CVSUtils.class.getClassLoader().getResource("/").getPath();
    public static final String[] heads = {"姓名", "邮箱地址", "手机号码", "省", "市", "县/区", "乡镇/街道", "详细地址", "备注"};

    //读取csv文件
    public static List<String[]> readCsv(String filePath) throws Exception {
        List<String[]> csvList = new ArrayList<String[]>();
        if (isCsv(filePath)) {
            CsvReader reader = new CsvReader(filePath, ',', Charset.forName("GBK"));

            while (reader.readRecord()) { //逐行读入除表头的数据
                csvList.add(reader.getValues());
            }
            reader.close();
        } else {
            System.out.println("此文件不是CSV文件!");
            throw new RuntimeException("此文件不是CSV文件!");
        }
        return csvList;
    }

    //判断是否是csv文件
    private static boolean isCsv(String fileName) {
        return fileName.matches("^.+\\.(?i)(csv)$");
    }

    //写入csv文件并返回文件路径
    public static String writeCsv(String fileName, List<String[]> contents) {
        try {
            String filePath = CONTACT_PATH.substring(0, CONTACT_PATH.length() - 8);
            String fileNameTemp = System.currentTimeMillis() + fileName + FILE_EXTENSIONS;
            String fileQualifiedName = filePath + CONTACT_FOLDER + File.separator + fileNameTemp;
            File csvFile = new File(fileQualifiedName);
            File parent = csvFile.getParentFile();//得到父目录
            if (parent != null && !parent.exists()) {
                parent.mkdirs();//创建文件夹
            }
            csvFile.createNewFile();//创建具体的文件

            CsvWriter wr = new CsvWriter(fileQualifiedName, ',', Charset.forName("GBK"));
            wr.writeRecord(heads);
            if (contents != null && contents.size() > 0) {
                for (String[] content : contents) {
                    wr.writeRecord(content);
                }
            }
            wr.close();
            return fileQualifiedName;
        } catch (IOException e) {
            e.printStackTrace();
            return null;
        }
    }

//    public static void writeCsv(Class<?> clazz) {
//        // Get all the declared fields
//        Field[] fields = clazz.getDeclaredFields();
//        LinkedList<Field> fieldList = new LinkedList<Field>();
//        int length = fields.length;
//        for (int i = -1; ++i < length; ) {
//            boolean isStaticField = Modifier.isStatic(fields[i].getModifiers());
//            if (isStaticField)
//                continue;
//            boolean isTransientField = Modifier.isTransient(fields[i].getModifiers());
//            if (isTransientField)
//                continue;
//            fieldList.add(fields[i]);
//        }
//        System.out.println(clazz.getName());
//    }
}

所需jar包

<dependency>
    <groupId>org.jumpmind.symmetric</groupId>
    <artifactId>symmetric-csv</artifactId>
    <version>3.5.19</version>
</dependency>
时间: 2024-09-20 09:10:43

下载附件的相关文章

PHP IE中下载附件问题解决方法

 在IE中下载附件之前要清空缓存.中文文件名要用urlencode编码,下面有个不错的示例,需要的朋友可以参考下 重点:    1.在IE中下载附件之前要清空缓存.    2.中文文件名要用urlencode编码.  代码如下: Header("Pragma: "); //不加的话,IE中会提示目标主机无法访问  Header("Cache-Control: "); //不加的话,IE中会提示目标主机无法访问  Header("content-type:

Outlook无法保存附件该怎么办? Outlook不能下载附件的解决办法

  在Outlook中打开附件或者是下载附件的时候,弹出提示信息:无法保存该附件.无法创建文件:****.请右键单击要在其中创建文件的文件夹,然后单击快捷菜单上的"属性",检查对该文件夹的权限.或者提示:Cannot create file:file name.Right-click the folder you want to create the file in and click Properties on the shortcut menu to check your perm

接口-微信上如何下载附件,请问怎么样解决?

问题描述 微信上如何下载附件,请问怎么样解决? 利用微信平台的接口,在上面开发了应用系统. 目前遇到问题,请问如何实现在微信上下载附件. 解决方案 http://segmentfault.com/q/1010000002553117 解决方案二: 你好 前言: 微信上接收到朋友传来的文件保存在哪里了呢?如何找到微信接收的文件呢? 方法/步骤 微信上成功接收到朋友传来的文件: 参阅百度经验:微信如何接收文件 微信接收到的文件存储在微信安装目录的Download目录下: 如:存储卡(或手机存储)/t

ssl-网站配置https之后,移动端浏览器无法下载附件,但是PC端和移动端的UC浏览器却能正常下载

问题描述 网站配置https之后,移动端浏览器无法下载附件,但是PC端和移动端的UC浏览器却能正常下载 遇到了一个问题,我给网站项目配置https之后,移动端如(平板.手机)无法通过下载附件,但是通过移动端的UC浏览器却可以,并且PC也能正常下载,在servlet我设置了response.setHeader("Cache-Control","public");response.setHeader("Pragma","public&quo

asp net sql-使用ASP.net下载附件,附件内容为system.byte[],请问错在哪里?如何转换?

问题描述 使用ASP.net下载附件,附件内容为system.byte[],请问错在哪里?如何转换? 数据中附件类型为Image,数据库中查看显示<二进制数据>,但是用C#的datetale读取时,查看显示为system.byte[]. string sql = ""SELECT * from Attachment_tb where ID='"" + attachmentID + ""'""; DataTable

c#-C#,Jmail中 Messages[i]接收邮件时,怎样不下载附件,只获取文本信息

问题描述 C#,Jmail中 Messages[i]接收邮件时,怎样不下载附件,只获取文本信息 jmail.POP3Class popMail = new jmail.POP3Class(); jmail.Message mailMessage=popMail.Messages[i]; 解决方案 表面上看是附件,其实附件也是附加在右键正文中的,所以你想不下载整个邮件,只获取文本,除非你在pop服务器上再加一层,解析右键,并且只返回消息的调用,标准的pop协议是不行的.

gd-ASP.NET网站下载附件时报404错误

问题描述 ASP.NET网站下载附件时报404错误 一个运行多年的网站迁移服务器后,在下载.gd格式的附件时报404错误,但在服务器中确实有这么一个附件,路径是正确的.下载.doc,.jpg等附件都正常,将.gd格式附件改为.doc也是可以正常下载的. 注:在原来老的服务器中是可以正常下载的,迁移至新的服务器后就不能下载了.服务器环境:windows server2008r2,怀疑是iis设置不当引起的,搜索了网上的解决办法也未能解决. 请解答,谢谢! 解决方案 服务器IIS中的Mime类型中没

Ecshop中限制VIP会员才能下载附件

只有VIP会员才能下载文章页的附件这个方法,能帮助网站转化会员,有很大的帮助,也是对网站运营方的一种认可,下面就以官方2.7.2默认模板为基础来讲述一下"如何在文章详情页限制只有VIP会员才能下载相关附件". 这里假设VIP会员的等级ID为2 修改系统文件 打开 /article.php 在文件的最末尾增加下面函数  代码如下 复制代码 function insert_article_download($arr) { global $_LANG; if ($_SESSION['user

JavaMail servlet中下载附件问题

问题描述 如题,一个超链接中传3个参数给servlet, publicclassDownloadAttachextendsHttpServlet{publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{response.setContentType("text/html;charset=gb2312");ServletOutputSt