【发布时间】:2014-11-01 12:55:31
【问题描述】:
我需要使用 java 程序从 Gmail 帐户下载附件。 使用Apache Camel。
在跑步时,我得到了,
Exchange[MailMessage: null],因此 attachments.size() 为 0
我也发布了我的测试代码
@Test
public void configureExcange() throws Exception {
try {
CamelContext context = new DefaultCamelContext();
Endpoint endpoint =
context.getEndpoint("imaps://imap.gmail.com?username=" + mailId + "&password=" + password
+ "&delete=false&unseen=true&consumer.delay=60000");
// PollingConsumer consumer = endpoint.createPollingConsumer();
Exchange exchange = endpoint.createExchange();
process(exchange);
} catch (Exception e) {
e.printStackTrace();
}
}
public void process(Exchange exchange) throws Exception {
// the API is a bit clunky so we need to loop
Map<String, DataHandler> attachments = exchange.getIn().getAttachments();
if (attachments.size() > 0) {
for (String name : attachments.keySet()) {
DataHandler dh = attachments.get(name);
// get the file name
String filename = dh.getName();
// get the content and convert it to byte[]
byte[] data = exchange.getContext().getTypeConverter().convertTo(byte[].class, dh.getInputStream());
// write the data to a file
FileOutputStream out = new FileOutputStream(filename);
out.write(data);
out.flush();
out.close();
}
}
}
如何获取附件?
【问题讨论】:
标签: java email apache-camel email-attachments