Selaa lähdekoodia

下载路径调整

hujie 1 vuosi sitten
vanhempi
commit
b4b2291b6a

+ 6 - 2
cn.com.taiji.system/src/main/java/cn/com/taiji/zhongxiao/web/FileDown.java

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