java 阿拉伯文_使用JavaMail阅读阿拉伯文附件

我使用Java Mail下载阿拉伯文附件文件时遇到问题。

文件名始终是不明确的。

问题是Bodypart检索附件为非UTF-8字符。

private void getAttachments(Message temp) throws IOException, MessagingException {

List attachments = new ArrayList();

Multipart multipart = (Multipart) temp.getContent();

System.out.println(multipart.getCount());

for (int i = 0; i < multipart.getCount(); i++) {

BodyPart bodyPart = multipart.getBodyPart(i);

if (!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition())) {

continue; // dealing with attachments only

}

InputStream is = bodyPart.getInputStream();

// getFilename always have wrong characters set

byte [] fileBytes = bodyPart.getFileName().toString().getBytes();

String filename = new String(fileBytes, "UTF-8");

File f = new File("C:\\Attachments\\" + filename);

System.out.println(f .getName());

try {

if (f == null) {

//filename = File.createTempFile("VSX", ".out").getName();

return;

}

FileOutputStream fos = new FileOutputStream(f );

BufferedOutputStream bos = new BufferedOutputStream(fos);

BufferedInputStream bis = new BufferedInputStream(is);

int aByte;

while ((aByte = bis.read()) >=0) {

bos.write(aByte);

}

fos.flush();

bos.flush();

bos.close();

bis.close();

fos.close();

} // end of try()

catch (IOException exp) {

System.out.println("IOException:" + exp);

}

attachments.add(f);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值