|
|
@ -5,20 +5,44 @@ import java.io.File;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.io.FileUtils;
|
|
|
|
|
|
|
|
import org.springframework.http.HttpHeaders;
|
|
|
|
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
|
|
|
|
|
import org.springframework.http.MediaType;
|
|
|
|
|
|
|
|
import org.springframework.http.ResponseEntity;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
|
|
|
|
|
|
import com.base.BaseController;
|
|
|
|
import com.base.BaseController;
|
|
|
|
|
|
|
|
import com.platform.utils.Configs;
|
|
|
|
import com.platform.utils.ZipCompressUtils;
|
|
|
|
import com.platform.utils.ZipCompressUtils;
|
|
|
|
|
|
|
|
|
|
|
|
@Controller
|
|
|
|
@Controller
|
|
|
|
@RequestMapping("/filePackage")
|
|
|
|
@RequestMapping("/filePackage")
|
|
|
|
public class FilePackageController extends BaseController {
|
|
|
|
public class FilePackageController extends BaseController {
|
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping("download")
|
|
|
|
@RequestMapping("/download")
|
|
|
|
public void downloadFile(HttpServletRequest request,
|
|
|
|
public ResponseEntity<byte[]> downloadFile(HttpServletRequest request,
|
|
|
|
HttpServletResponse response) {
|
|
|
|
HttpServletResponse response) throws Exception {
|
|
|
|
ZipCompressUtils.zip(new File("D:\\20160906-汇总-V2.4"), "D:\\文件包.zip");
|
|
|
|
String filePath = Configs.PACKAGE_DOWNLOAD_PATH;
|
|
|
|
|
|
|
|
System.out.println(filePath + Configs.PACKAGE_NAME);
|
|
|
|
|
|
|
|
ZipCompressUtils.zip(new File(filePath + Configs.PACKAGE_NAME),
|
|
|
|
|
|
|
|
filePath + "package.zip"); // 产生压缩文件
|
|
|
|
|
|
|
|
File file = new File(filePath + "package.zip");
|
|
|
|
|
|
|
|
if (file.exists()) {
|
|
|
|
|
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
|
|
|
|
|
String fileName = new String(file.getName());// 为了解决中文名称乱码问题
|
|
|
|
|
|
|
|
System.out.println(fileName);
|
|
|
|
|
|
|
|
headers.setContentDispositionFormData("attachment", fileName);
|
|
|
|
|
|
|
|
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
|
|
|
|
|
|
|
|
ResponseEntity<byte[]> responseEntity = new ResponseEntity<byte[]>(
|
|
|
|
|
|
|
|
FileUtils.readFileToByteArray(file), headers,
|
|
|
|
|
|
|
|
HttpStatus.CREATED);
|
|
|
|
|
|
|
|
file.delete(); //
|
|
|
|
|
|
|
|
return responseEntity;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
response.setStatus(500);
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|