salut,

j'ai reussi a envoi email en java mais mon probleme est comment ajouter a mon code envoi avec piece jointe

voila mon code :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
public class Test {
 
 
public static void main (String[] args) throws Exception { String host = "smtp.topnet.tn";
 
        String from = "momo@hotmail.fr ";
        String to = "mido@yahoo.fr";
 
         // Get system properties
        Properties properties = System.getProperties();
 
        // Setup mail server
        properties.setProperty("mail.smtp.host", host);
 
        // Get the default Session object.
        Session session = Session.getDefaultInstance(properties);
 
        // Create a default MimeMessage object.
        MimeMessage message = new MimeMessage(session);
 
        // Set the RFC 822 "From" header field using the
        // value of the InternetAddress.getLocalAddress method.
        message.setFrom(new InternetAddress(from));
 
        // Add the given addresses to the specified recipient type.
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
 
        // Set the "Subject" header field.
        message.setSubject("welcom!");
 
        // Sets the given String as this part's content,
        // with a MIME type of "text/plain".
        message.setText("bienvenu  ");
 
        // Send message
        Transport.send(message);
 
         System.out.println("Message Send.....");
 
 
 
 
 
 
 
 
 
 
 
 
 
 }
 
    }

juste je veux savoir quelle serai la modification ajouter pour rendre ce code

travail avec piece jointe


merci d'avance