Java多文件下载打包zip返回客户端,不写入本地

综合网上的资料自行整合的方法可直接复制使用。如果电脑装载360浏览器,可能会直接下载到本地,容易给开发者造成误扰,(以为写入本地,这时可以采用其他人电脑访问开发者服务器进行测试)参考文献:http://blog.csdn.net/sinat_32849651/article/details/77098161

 

 

@RestController
@RequestMapping("xxxx")
public class DownLoadController {

private static final Logger logger = LoggerFactory.getLogger(UrlFilesToZip.class);
/**
* 下载多个文件这
* @return
*/
@RequestMapping("/multipleDownLoad")
public static void getFile(String urls, String destFileName, HttpServletResponse response)
throws ClientProtocolException, IOException {

List<String> urlList = new ArrayList<>();
for(String id : StringUtils.splitToList(urls,",")){
urlList.add(id);
}
try {
String filename = new String((destFileName+".zip").getBytes("UTF-8"), "ISO8859-1");//控制文件名编码
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ZipOutputStream zos = new ZipOutputStream(bos);
UrlFilesToZip s = new UrlFilesToZip();
int idx = 1;
String postfix = "";
for (String oneFile : urlList) {
if (!(oneFile == null || oneFile.indexOf(".") == -1)){
//如果图片地址为null或者地址中没有"."就返回""
postfix = oneFile.substring(oneFile.lastIndexOf(".") + 1).trim().toLowerCase();
}
if(StringUtils.isNotNull(postfix)) {
postfix = "."+postfix;
}
zos.putNextEntry(new ZipEntry(destFileName + idx+postfix));
byte[] bytes = s.getImageFromURL(oneFile);
zos.write(bytes, 0, bytes.length);
zos.closeEntry();
idx++;
}
zos.close();
response.setContentType("application/octet-stream; charset=utf-8");
// response.setContentType("application/force-download");// 设置强制下载不打开
response.addHeader("Content-Disposition", "attachment;fileName=" + filename);// 设置文件名
OutputStream os = response.getOutputStream();
os.write(bos.toByteArray());
os.close();
} catch (FileNotFoundException ex) {
logger.error("FileNotFoundException", ex);
} catch (Exception ex) {
logger.error("Exception", ex);
}
}
}

 

 

 

public class StringUtils {

public static List<String> splitToList(String str, String regex) {
if(isNull(str)) {
return null;
} else {
ArrayList resultList = new ArrayList();
List resultObject = arrayToList(str.split(regex));
Iterator i$ = resultObject.iterator();

while(i$.hasNext()) {
Object obj = i$.next();
resultList.add(obj.toString());
}

return resultList;
}
}
}

/**
* Created by Admin on 2017/10/19.
*/
public class UrlFilesToZip {
private static final Logger logger = LoggerFactory.getLogger(UrlFilesToZip.class);
//根据文件链接把文件下载下来并且转成字节码
public byte[] getImageFromURL(String urlPath) {
byte[] data = null;
InputStream is = null;
HttpURLConnection conn = null;
try {
URL url = new URL(urlPath);
conn = (HttpURLConnection) url.openConnection();
conn.setDoInput(true);
// conn.setDoOutput(true);
conn.setRequestMethod("GET");
conn.setConnectTimeout(6000);
is = conn.getInputStream();
if (conn.getResponseCode() == 200) {
data = readInputStream(is);
} else {
data = null;
}
} catch (MalformedURLException e) {
logger.error("MalformedURLException", e);
} catch (IOException e) {
logger.error("IOException", e);
} finally {
try {
if (is != null) {
is.close();
}
} catch (IOException e) {
logger.error("IOException", e);
}
conn.disconnect();
}
return data;
}
public byte[] readInputStream(InputStream is) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int length = -1;
try {
while ((length = is.read(buffer)) != -1) {
baos.write(buffer, 0, length);
}
baos.flush();
} catch (IOException e) {
logger.error("IOException", e);
}
byte[] data = baos.toByteArray();
try {
is.close();
baos.close();
} catch (IOException e) {
logger.error("IOException", e);
}
return data;
}

 

}

转载于:https://www.cnblogs.com/ccmedu/p/7693950.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中可以使用`java.util.zip`包来实现根据URL将多个文件打包zip并进行下载的功能。下面是一个示例代码: ```java import java.io.*; import java.net.URL; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; public class FileZipDownloader { public static void main(String[] args) { String zipUrl = "http://example.com/files.zip"; String[] fileUrls = {"http://example.com/file1.txt", "http://example.com/file2.txt"}; try { // 创建ZipOutputStream FileOutputStream fos = new FileOutputStream("downloaded_files.zip"); ZipOutputStream zos = new ZipOutputStream(fos); // 从URL下载并添加文件zip中 for (String fileUrl : fileUrls) { URL url = new URL(fileUrl); InputStream is = url.openStream(); zos.putNextEntry(new ZipEntry(url.getFile())); byte[] buffer = new byte[1024]; int length; while ((length = is.read(buffer)) > 0) { zos.write(buffer, 0, length); } is.close(); zos.closeEntry(); } // 关闭流 zos.close(); fos.close(); // 下载zip文件 downloadZip(zipUrl); } catch (IOException e) { e.printStackTrace(); } } private static void downloadZip(String url) throws IOException { URL zipUrl = new URL(url); InputStream is = zipUrl.openStream(); FileOutputStream fos = new FileOutputStream("downloaded_files.zip"); byte[] buffer = new byte[1024]; int length; while ((length = is.read(buffer)) > 0) { fos.write(buffer, 0, length); } is.close(); fos.close(); } } ``` 上述代码首先创建了一个`ZipOutputStream`对象,然后依次遍历多个文件的URL,将每个文件下载后添加到zip中,并关闭流。最后调用`downloadZip`方法根据zip文件的URL进行下载。请确保提供的URL和文件格式的可用性和正确性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值