Hallo Leute,
ich habe mir folgenden Code aus dem SUn Tutorial geschnappt und wollte den compilieren.
Leider bekomme ich immer java.lang.ArrayIndexOutOfBoundsException: 0
at MailExample.main(MailExample.java:20)
Exception in thread "main"
Kann mir jemand weiterhelfen?
Danke Hunter
ich habe mir folgenden Code aus dem SUn Tutorial geschnappt und wollte den compilieren.
Code:
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
public class MailExample {
public static void main (String args[]) throws Exception {
String host = args[0];
String from = args[1];
String to = args[2];
// Get system properties
Properties props = System.getProperties();
// Setup mail server
props.put("mail.smtp.host", host);
// Get session
Session session = Session.getDefaultInstance(props, null);
// Define message
MimeMessage message = new MimeMessage(session);
// Set the from address
message.setFrom(new InternetAddress(from));
// Set the to address
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
// Set the subject
message.setSubject("Hello JavaMail");
// Set the content
message.setText("Welcome to JavaMail");
// Send message
Transport.send(message);
}
}
Leider bekomme ich immer java.lang.ArrayIndexOutOfBoundsException: 0
at MailExample.main(MailExample.java:20)
Exception in thread "main"
Kann mir jemand weiterhelfen?
Danke Hunter