1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| |
16 |
| |
17 |
| |
18 |
| package javax.mail.internet; |
19 |
| |
20 |
| import java.io.IOException; |
21 |
| import java.io.InputStream; |
22 |
| import java.io.OutputStream; |
23 |
| import java.net.UnknownServiceException; |
24 |
| import javax.activation.DataSource; |
25 |
| import javax.mail.MessageAware; |
26 |
| import javax.mail.MessageContext; |
27 |
| import javax.mail.MessagingException; |
28 |
| |
29 |
| |
30 |
| |
31 |
| |
32 |
| public class MimePartDataSource implements DataSource, MessageAware { |
33 |
| |
34 |
| protected MimePart part; |
35 |
| |
36 |
7
| public MimePartDataSource(MimePart part) {
|
37 |
7
| this.part = part;
|
38 |
| } |
39 |
| |
40 |
7
| public InputStream getInputStream() throws IOException {
|
41 |
7
| try {
|
42 |
7
| InputStream stream;
|
43 |
7
| if (part instanceof MimeMessage) {
|
44 |
2
| stream = ((MimeMessage) part).getContentStream();
|
45 |
5
| } else if (part instanceof MimeBodyPart) {
|
46 |
5
| stream = ((MimeBodyPart) part).getContentStream();
|
47 |
| } else { |
48 |
0
| throw new MessagingException("Unknown part");
|
49 |
| } |
50 |
6
| String encoding = part.getEncoding();
|
51 |
6
| return encoding == null ? stream : MimeUtility.decode(stream, encoding);
|
52 |
| } catch (MessagingException e) { |
53 |
1
| throw (IOException) new IOException(e.getMessage()).initCause(e);
|
54 |
| } |
55 |
| } |
56 |
| |
57 |
0
| public OutputStream getOutputStream() throws IOException {
|
58 |
0
| throw new UnknownServiceException();
|
59 |
| } |
60 |
| |
61 |
14
| public String getContentType() {
|
62 |
14
| try {
|
63 |
14
| return part.getContentType();
|
64 |
| } catch (MessagingException e) { |
65 |
0
| return null;
|
66 |
| } |
67 |
| } |
68 |
| |
69 |
0
| public String getName() {
|
70 |
0
| return "";
|
71 |
| } |
72 |
| |
73 |
0
| public synchronized MessageContext getMessageContext() {
|
74 |
0
| return new MessageContext(part);
|
75 |
| } |
76 |
| } |