Forums Register Login

Mail Retieval

+Pie Number of slices to send: Send
following programm is giving me error as 'NoRoutetoHostException' can
you help me in above problem.
> The programm is as follows:
>
> file://java GetMessageExample <pop.server.com> <username> <password>
>
>
> import java.io.*;
> import java.util.Properties;
> import javax.mail.*;
> import javax.mail.internet.*;
>
> public class GetMessageExample {
> public static void main (String args[]) throws Exception {
> String host = args[0];
> String username = args[1];
> String password = args[2];
>
> // Create empty properties
> Properties props = new Properties();
>
> // Get session
> Session session = Session.getInstance(props, null);
>
> // Get the store
> Store store = session.getStore("pop");
> store.connect(host, username, password);
>
> // Get folder
> Folder folder = store.getFolder("INBOX");
> folder.open(Folder.READ_ONLY);
>
> BufferedReader reader = new BufferedReader(new
InputStreamReader(System.in));
>
> // Get directory
> Message message[] = folder.getMessages();
> for (int i=0, n = message.length;i<n; i++)<br /> > {
> System.out.println(i + ":" + message[i].getFrom()[0] +
> "\t" + message[i].getSubject());
> System.out.println( "Do you want to read message? [YES to
read/QUIT to end]");
> String line = reader.readLine();
>
> // Mark as deleted if appropriate
> if("YES".equals(line)) { message[i].writeTo(System.out); }
> else if ("QUIT".equals(line))
> { break; }
> }
>
> // Close connection
> folder.close(false);
> store.close();}
> }
>
+Pie Number of slices to send: Send
Hi
Are you running this program behind a proxy?
thanks and regards
ravee.
+Pie Number of slices to send: Send
no i am not running this programm behind fire wall
+Pie Number of slices to send: Send
Hi Yogesh,
can you post the stackTrace? And what are you using as the host?
thanks and regards
ravee
There is no greater crime than stealing somebody's best friend. I miss you tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 1125 times.
Similar Threads
Retrieve Emails from Gmail
Need some help me java mail-smtp
saving attachments with javamail
java mail api
Upload attachments by email
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 15, 2024 22:11:04.