SpringCloud 通過feign檔案傳輸並打zip包下載
一:檔案打zip包並下載;
準備兩個專案8800和8899;
8899:負責提供檔案的下載服務;
8800:負責去8899資源管理工程下載檔案,並打zip包下載;
1):檔案資源提供方8899程式碼
@RestController
public class DownloadFileController {
private static Logger logger = Logger.getLogger(DownloadFileController.class);
@PostMapping(value = "/download/file")
public void downloadFile(HttpServletResponse response,@RequestParam String filePath){
logger.info("檔案路徑:"+filePath);
//這裡模擬去資源伺服器下載的過程
File file = new File(filePath);
//file物件轉byte[],實際可能是將流物件轉byte[],所以這個方法的程式碼根據實際情況而定;
byte[] filebyte = this.Filebyte(file);
try {
ServletOutputStream outputStream = response.getOutputStream();
//這裡需要的就是個byte數字,實際去資源伺服器下載可能會得到流物件如:inputStream,實際只需將inputSteam轉為byte[]即可;
outputStream.write(filebyte);
outputStream.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* File 轉 byte陣列
* @param tradeFile
* @return
*/
public byte[] Filebyte(File tradeFile){
byte[] buffer = null;
try
{
FileInputStream fis = new FileInputStream(tradeFile);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] b = new byte[1024];
int n;
while ((n = fis.read(b)) != -1)
{
bos.write(b, 0, n);
}
fis.close();
bos.close();
buffer = bos.toByteArray();
}catch (FileNotFoundException e){
e.printStackTrace();
}catch (IOException e){
e.printStackTrace();
}
return buffer;
}
}
2):8800檔案加工打zip包的服務;
1,打zip包需要引入相關依賴;
<!--檔案下載打包-->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.18</version>
</dependency>
2,呼叫8899下載檔案的介面;
@FeignClient(value = "ZT-FRANK-ENCRYPTION-PROVIDER-SERVICE-8899")
public interface IDownloadClientService {
@PostMapping(value = "/download/file")
Response downloadfile(@RequestParam String filePath);
}
3):打zip包以及檔案下載完整程式碼;
@RestController
public class DownloadFileController {
private static Logger logger = Logger.getLogger(DownloadFileController.class);
@Autowired
private IDownloadClientService downloadClientService;
@RequestMapping(value = "/download/zip")
public void downloadFile(HttpServletResponse response){
List<String> list = new ArrayList<>();
list.add("D:/Project/TestData/aa.txt");
list.add("D:/Project/TestData/bb.txt");
list.add("D:/Project/TestData/cc.txt");
/**
* 邊下載邊打包zip
*/
String downloadName = "Test附件.zip";
try {
response.setContentType("multipart/form-data");
response.setHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(downloadName, "UTF-8"));
} catch (Exception e) {
logger.info("下載檔名編碼時出現錯誤.", e);
}
OutputStream outputStream = null;
ZipOutputStream zos = null;
try {
outputStream = response.getOutputStream();
zos = new ZipOutputStream(outputStream);
// ***將檔案流寫入zip中***
this.downloadTolocal(zos,list);
} catch (IOException e) {
logger.error("downloadAllFile-xxx下載全部附件失敗,錯誤資訊=[{}]",e);
}finally {
if(zos != null) {
try {
zos.close();
} catch (Exception e2) {
logger.info("關閉輸入流時出現錯誤",e2);
}
}
if(outputStream != null) {
try {
outputStream.close();
} catch (Exception e2) {
logger.info("關閉輸入流時出現錯誤",e2);
}
}
}
}
private void downloadTolocal(ZipOutputStream zos,List<String> list ) throws IOException {
for (int i =0;i<list.size();i++) {
InputStream is = null;
BufferedInputStream in = null;
byte[] buffer = new byte[1024];
int len;
//建立zip實體(一個檔案對應一個ZipEntry)
ZipEntry entry = new ZipEntry(i+"AA.txt");
try {
//***獲取需要下載的檔案流***
is = this.download(list.get(i));
in = new BufferedInputStream(is);
zos.putNextEntry(entry);
//檔案流迴圈寫入ZipOutputStream
while ((len = in.read(buffer)) != -1 ) {
zos.write(buffer, 0, len);
}
} catch (Exception e) {
logger.info("xxx--下載全部附件--壓縮檔案出錯",e);
}finally {
if(entry != null) {
try {
zos.closeEntry();
} catch (Exception e2) {
logger.info("xxx下載全部附件--zip實體關閉失敗",e2);
}
}
if(in != null) {
try {
in.close();
} catch (Exception e2) {
logger.info("xxx下載全部附件--檔案輸入流關閉失敗",e2);
}
}
if(is != null) {
try {
is.close();
}catch (Exception e) {
logger.info("xxx下載全部附件--輸入緩衝流關閉失敗",e);
}
}
}
}
}
/**
* 去8899服務通過feign下載檔案;
* @param filePath
* @return
*/
public InputStream download(String filePath){
//去8899服務通過feign下載檔案;
Response resp = downloadClientService.downloadfile(filePath);
Response.Body body = resp.body();
try {
//得到檔案流物件
InputStream inputStream = body.asInputStream();
return inputStream;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
3):測試瀏覽器訪問8800的下載介面 http://localhost:8800/download/zip
開啟下載的檔案,檔名就是程式碼裡面自定義的檔名;
相關文章
- springcloud中feign檔案上傳、下載SpringGCCloud
- zip打包下載
- springCloud 微服務通過minio實現檔案上傳和檔案下載介面SpringGCCloud微服務
- Feign實現檔案上傳下載
- 通過php下載檔案並重新命名PHP
- spring cloud feign 檔案上傳和檔案下載SpringCloud
- linux下遠端傳送檔案命令,通過ssh協議傳輸檔案Linux協議
- Laravel 中建立 Zip 壓縮檔案並提供下載Laravel
- Android 下載Zip檔案,並解壓到本地Android
- 批處理 壓縮zip 並過濾部分檔案
- 通過RMAN-transport獲取傳輸表空間檔案
- 檔案流下載檔案,zip/其他格式檔案
- ajax上傳檔案,spring mvc獲取檔案並處理,通過頁面按鈕傳送url,由後臺控制檔案下載SpringMVC
- 通過中轉機及ssh rsync 傳輸歸檔檔案進行同步
- Qt通過Http上傳檔案(路過)QTHTTP
- java tcp網路通訊 傳輸檔案JavaTCP
- 通過配置檔案(.htaccess)實現檔案上傳
- spring cloud feign實現遠端呼叫服務傳輸檔案SpringCloud
- 前端通過 post 下載檔案前端
- PHP如何通過CURL上傳檔案PHP
- 使用PHP自帶zlib函式幾行程式碼實現PHP檔案打包下載zipPHP函式行程
- win10系統區域網傳輸檔案操作方法 win10怎麼通過區域網傳輸檔案Win10
- php 建立壓縮包zip,並將指定檔案放入zip中PHP
- 藍芽網路檔案傳輸過程藍芽
- 什麼是極速檔案傳輸,極速檔案傳輸如何進行大檔案傳輸
- Thinkphp6 利用 ZipArchive 打包下載檔案PHPHive
- webservice傳輸檔案Web
- scp 傳輸檔案
- sftp 傳輸檔案FTP
- python 壓縮檔案並進行郵件傳送(附件格式為zip)Python
- jftp通過sftp協議上傳檔案FTP協議
- Windows 機器通過 FTP 上傳檔案WindowsFTP
- 在php中通過curl上傳檔案PHP
- php通過ftp協議上傳檔案PHPFTP協議
- 大檔案如何傳輸,大檔案的傳輸方式有哪些?
- 大檔案傳輸解決方案:分片上傳 / 下載限速
- Java zip解壓,並遍歷zip中的配置檔案 .cfg或.propertiesJava
- Android程式解壓縮zip檔案,並載入顯示解壓後的檔案內容Android