|
@@ -9,6 +9,7 @@ import java.net.URLEncoder;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -19,12 +20,15 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
public class FileDown {
|
|
public class FileDown {
|
|
|
|
|
|
|
|
|
|
|
|
+ @Value("${office.template.path}")
|
|
|
|
+ private String officePath;
|
|
|
|
+
|
|
@RequestMapping("/download{name}")
|
|
@RequestMapping("/download{name}")
|
|
public void fileDownload(@PathVariable("name") String name ,HttpServletRequest request, HttpServletResponse response){ //Model models,
|
|
public void fileDownload(@PathVariable("name") String name ,HttpServletRequest request, HttpServletResponse response){ //Model models,
|
|
FileInputStream ins = null;
|
|
FileInputStream ins = null;
|
|
OutputStream out = null ;
|
|
OutputStream out = null ;
|
|
try {
|
|
try {
|
|
- String path=request.getServletContext().getRealPath("/")+name+".xlsx";
|
|
|
|
|
|
+ String path = officePath + File.separator + name + ".xlsx";
|
|
File file = new File(path);
|
|
File file = new File(path);
|
|
//设置响应头,控制浏览器下载该文件
|
|
//设置响应头,控制浏览器下载该文件
|
|
if(file.exists()){
|
|
if(file.exists()){
|
|
@@ -72,7 +76,7 @@ public class FileDown {
|
|
FileInputStream ins = null;
|
|
FileInputStream ins = null;
|
|
OutputStream out = null ;
|
|
OutputStream out = null ;
|
|
try {
|
|
try {
|
|
- String path=request.getServletContext().getRealPath("/")+name+"."+type;
|
|
|
|
|
|
+ String path = officePath + File.separator + name + "." + type;
|
|
File file = new File(path);
|
|
File file = new File(path);
|
|
//设置响应头,控制浏览器下载该文件
|
|
//设置响应头,控制浏览器下载该文件
|
|
if(file.exists()){
|
|
if(file.exists()){
|