Flow获取http请求,java组件创建一个zip文件并发回。 zip文件被下载但是当我解压缩时,我收到错误,说“压缩文件夹无效”。 java在临时位置创建的临时zip工作正常。问题是如何将zip文件设置为有效负载?
public Object onCall(MuleEventContext eventContext) throws Exception {
MuleMessage message = eventContext.getMessage();
message.setOutboundProperty("Content-type", "application/zip");
message.setOutboundProperty("Content-Disposition", "attachment;filename=\"my_Logs.zip\"");
File tempZip = File.createTempFile("LOGS", ".zip");
FileOutputStream fos = new FileOutputStream(tempZip);
ZipOutputStream zipOut = new ZipOutputStream(fos);
File logDir = new File("C:/Temp/logs");
zipOut.setMethod(ZipOutputStream.DEFLATED);
zipOut.setLevel(9);
FileInputStream in =null;
int len =0;
byte[] buf = new byte[1024];
for(File file : logDir.listFiles()){
String filename = file.getName();
in = new FileInputStream(file);
zipOut.putNextEntry(new ZipEntry(filename));
while ((len = in.read(buf))>0){
zipOut.write(buf,0,len);
}
zipOut.closeEntry();
in.close();
}
zipOut.close();
message.setPayload(tempZip);
return message;
}
流量
<http:listener-config name="HTTP_Listener_Configuration" host="0.0.0.0" port="8081" doc:name="HTTP Listener Configuration"/>
<flow name="httppayloadFlow">
<http:listener config-ref="HTTP_Listener_Configuration" path="*" doc:name="HTTP"/>
<message-filter doc:name="Filter favicon">
<not-filter>
<wildcard-filter pattern="/favicon.ico" caseSensitive="true"/>
</not-filter>
</message-filter>
<component class="com.home.zipper.ZipLogs" doc:name="Java"/>
</flow>
我在这里做错了什么?感谢任何帮助
答案 0 :(得分:0)
您可以尝试使用压缩文件并完美地提供文件。
Mule Zip File and send zipped file towards FTP server
只需更改
在ZipTransformer构造函数中,不推荐使用以下内容。
registerSourceType(InputStream.class);
registerSourceType(byte[].class);
请改用:
registerSourceType(DataTypeFactory.create(InputStream.class));
registerSourceType(DataTypeFactory.create(byte[].class));
希望这有帮助。
答案 1 :(得分:0)
我更换了以下代码 message.setPayload(tempZip); 同 message.setPayload(org.apache.commons.io.FileUtils.readFileToByteArray(tempZip));