jinlin
2024-02-22 d5a224312d0c1d95182902908c79ec8f532a1ec4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package com.zt.life.export.service;
 
import com.deepoove.poi.XWPFTemplate;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import sun.misc.BASE64Encoder;
 
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;
import java.net.URLEncoder;
 
public class DownloadService {
 
    /**
     * 导出Excel模板
     *
     * @param response
     * @param fullPath
     * @param fileName
     */
    public static void download(HttpServletResponse response, String fullPath, String fileName) {
        response.setContentType("text/html;charset=UTF-8");
 
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        String contentType = "application/octet-stream";
        try {
            response.setContentType(contentType);
            response.setHeader("Content-disposition",
                    "attachment; filename=" + new String(fileName.getBytes("utf-8"), "ISO8859-1"));
            byte[] buff = new byte[2048];
            bis = new BufferedInputStream(new FileInputStream(fullPath));
            bos = new BufferedOutputStream(response.getOutputStream());
            int bytesRead;
            while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
                bos.write(buff, 0, bytesRead);
            }
        } catch (IOException e) {
        } finally {
            try {
                if (bis != null) {
                    bis.close();
                }
                if (bos != null) {
                    bos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    }
 
    // public static void download(HttpServletResponse response, XWPFDocument
    // document, String fileName) {
    // response.setContentType("text/html;charset=UTF-8");
    //
    // String contentType = "application/octet-stream";
    // try {
    // response.setContentType(contentType);
    // response.setHeader("Content-disposition",
    // "attachment; filename=" + new String(fileName.getBytes("utf-8"),
    // "ISO8859-1"));
    // ServletOutputStream out = response.getOutputStream();
    // document.write(out);
    // out.flush();
    // out.close();
    // } catch (IOException e) {
    // } finally {
    // try {
    // document.close();
    // } catch (IOException e) {
    // e.printStackTrace();
    // }
    // }
    //
    // }
 
    public static void download(HttpServletRequest request, HttpServletResponse response, XWPFTemplate template,
            String fileName) throws UnsupportedEncodingException {
 
        // 处理ie浏览器 或 火狐浏览器 乱码问题
        String fileNameEncoder = getNameEncoder(request, fileName);
 
        response.setContentType("text/html;charset=UTF-8");
        String contentType = "application/octet-stream";
        try {
            response.setContentType(contentType);
            response.setHeader("Content-disposition", "attachment; filename=" + fileNameEncoder);
            ServletOutputStream out = response.getOutputStream();
            template.write(out);
            out.flush();
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                template.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    }
 
    public static void download(HttpServletRequest request, HttpServletResponse response, XWPFDocument document,
            String fileName) throws UnsupportedEncodingException {
 
        // 处理ie浏览器 或 火狐浏览器 乱码问题
        String fileNameEncoder = getNameEncoder(request, fileName);
 
        response.setContentType("text/html;charset=UTF-8");
        String contentType = "application/octet-stream";
        try {
            response.setContentType(contentType);
            response.setHeader("Content-disposition", "attachment; filename=" + fileNameEncoder);
            ServletOutputStream out = response.getOutputStream();
            document.write(out);
            out.flush();
            out.close();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                document.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    }
 
    public static void downloadExecl(HttpServletResponse response, XSSFWorkbook template, String fileName) {
        response.setContentType("text/html;charset=UTF-8");
 
        String contentType = "application/octet-stream";
        try {
            response.setContentType(contentType);
            response.setHeader("Content-disposition",
                    "attachment; filename=" + new String(fileName.getBytes("utf-8"), "ISO8859-1"));
            ServletOutputStream out = response.getOutputStream();
            template.write(out);
            out.flush();
            out.close();
        } catch (IOException e) {
        } finally {
            try {
                template.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    }
 
    /**
     * 指定文件导出模板
     * @param excelPath 模板路径
     * @param excelName 导出模板名称
     * @param response
     * @param request
     * @throws IOException
     */
    public static void exportModelPath(String excelPath,String excelName,File file,HttpServletResponse response,HttpServletRequest request) throws IOException{
        InputStream fis = new BufferedInputStream(new FileInputStream(excelPath));
        int a = -1;
        byte[] bytes = new byte[fis.available()];
        int index = 0;
        while ((a = fis.read()) > -1) {
            bytes[index] = (byte) a;
            index++;
        }
        response.reset(); //清空
        response.setHeader("Content-Disposition", "attachment;filename=" + DownloadService.getNameEncoder(request, excelName));
        response.addHeader("Content-Length", "" + file.length());
        OutputStream ops = new BufferedOutputStream(response.getOutputStream());
        response.setContentType("application/octet-stream");
        ops.write(bytes);
        fis.close();
        ops.flush();
        ops.close();
    }
 
    /**
     * 处理ie浏览器 或 火狐浏览器 文件名乱码问题
     * 
     * @param request
     * @param fileName
     * @return
     * @throws UnsupportedEncodingException
     */
    public static String getNameEncoder(HttpServletRequest request, String fileName)
            throws UnsupportedEncodingException {
        // 获得请求头中的User-Agent
        String agent = request.getHeader("User-Agent");
        // 根据不同浏览器进行不同的编码
        String fileNameEncoder = "";
        if (agent.contains("MSIE") || agent.contains("Trident")) {
            // IE浏览器
            fileNameEncoder = URLEncoder.encode(fileName, "utf-8");
            fileNameEncoder = fileNameEncoder.replace("+", " ");
        } else if (agent.contains("Firefox")) {
            // 火狐浏览器
            BASE64Encoder base64Encoder = new BASE64Encoder();
            fileNameEncoder = "=?utf-8?B?" + base64Encoder.encode(fileName.getBytes("utf-8")) + "?=";
        } else {
            // 其它浏览器
            fileNameEncoder = URLEncoder.encode(fileName, "utf-8");
        }
        return fileNameEncoder;
    }
 
    /**
     * 导出Excel模板
     *
     * @param response
     * @param fullPath
     * @param fileName
     */
    public static void downloadZip(HttpServletResponse response, HttpServletRequest request, String fullPath,
            String fileName) {
 
        BufferedInputStream bis = null;
        BufferedOutputStream bos = null;
        try {
            // 处理ie浏览器 或 火狐浏览器 乱码问题
            String fileNameEncoder = getNameEncoder(request, fileName);
            response.setContentType("text/html;charset=UTF-8");
 
            String contentType = "application/octet-stream";
            response.setContentType(contentType);
            response.setHeader("Content-disposition", "attachment; filename=" + fileNameEncoder);
            byte[] buff = new byte[2048];
            bis = new BufferedInputStream(new FileInputStream(fullPath));
            bos = new BufferedOutputStream(response.getOutputStream());
            int bytesRead;
            while (-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
                bos.write(buff, 0, bytesRead);
            }
        } catch (IOException e) {
        } finally {
            try {
                if (bis != null) {
                    bis.close();
                }
                if (bos != null) {
                    bos.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    }
}