Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Why do we need to add the properties like

Properties props = System.getProperties();
    props.put("mail.smtp.starttls.enable", "true"); // added this line
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.user", from);
    props.put("mail.smtp.password", pass);
    props.put("mail.smtp.port", "587");


Session session = Session.getDefaultInstance(props, null);

to the system properties to send a mail. Why should it be specifically system properties?

share|improve this question
3  
How can things like your username, password be defaults? – adarshr Feb 27 '12 at 15:27
@adarshr: that was not what I meant. I just wanted to know why it is added to the system properties. – Ashwin Feb 27 '12 at 15:30
It is just a way to send a large number of parameters to a method. – adarshr Feb 27 '12 at 15:31

2 Answers

up vote 5 down vote accepted

You don't actually need to add them to the system properties.

If you create a new Properties instance and populate it with your attributes it will still work just the same.

share|improve this answer
but still why is it always added to the system properties. Generally to set a property the setProperty method is called. What is the puProperty method. – Ashwin Feb 27 '12 at 15:30
Try Properties props = new Properties(); instead – Mark Robinson Feb 27 '12 at 15:35

They do NOT need to be System Properties. They can be java.util.Properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.