This commit is contained in:
parent
bb41e8db9d
commit
3b5c725f1c
|
|
@ -285,9 +285,9 @@ public class ProAuthorizeServiceImpl implements ProAuthorizeService {
|
||||||
@Override
|
@Override
|
||||||
public void downLoadTemplate(HttpServletResponse response) {
|
public void downLoadTemplate(HttpServletResponse response) {
|
||||||
// 模板名称
|
// 模板名称
|
||||||
String templateName = "授权委托书模板.doc";
|
String templateName = "授权委托书模版.docx";
|
||||||
try (
|
try (
|
||||||
InputStream input = this.getClass().getClassLoader().getResourceAsStream("template/授权委托书模板.doc");
|
InputStream input = this.getClass().getClassLoader().getResourceAsStream("template/授权委托书模版.docx");
|
||||||
OutputStream out = response.getOutputStream()
|
OutputStream out = response.getOutputStream()
|
||||||
) {
|
) {
|
||||||
if (input == null) {
|
if (input == null) {
|
||||||
|
|
@ -295,7 +295,7 @@ public class ProAuthorizeServiceImpl implements ProAuthorizeService {
|
||||||
}
|
}
|
||||||
// 设置响应头
|
// 设置响应头
|
||||||
response.setCharacterEncoding("UTF-8");
|
response.setCharacterEncoding("UTF-8");
|
||||||
response.setContentType("application/msword");
|
response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document");
|
||||||
response.setHeader(
|
response.setHeader(
|
||||||
"Content-Disposition",
|
"Content-Disposition",
|
||||||
"attachment;filename=" + new String(templateName.getBytes("UTF-8"), "ISO-8859-1")
|
"attachment;filename=" + new String(templateName.getBytes("UTF-8"), "ISO-8859-1")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue