Home > Contents > Index >
Utilities.getPOP3Messages
Gets a vector of mail messages from a POP3 server.
There are two variants; their differences are as follows:
- getPOP3Messages (Variant 1) uses a default timeout value.
- getPOP3Messages (Variant 2) lets you set the timeout value.
Utilities.getPOP3Messages
Retrieves a vector of messages from a POP3 server.
Syntax
public static Vector getPOP3Messages(String host, String user, String password, boolean bRemove)Parameters
host
- The host name of the POP3 server that holds this user's e-mail.
user
- The user's account name.
password
- The user's password.
bRemove
- A boolean value. Set to
true
to remove the messages from the POP3 server after they are downloaded. Set tofalse
to keep the messages on the POP3 server.
Description
The
getPOP3Messages
method retrieves a vector of messages from a POP3 server. The default connection timeout is 120 seconds.The
Utilities
class provides amsgBody
field, which you use to locate the body portion of a returnedgetPOP3Messages()
element. It holds the name of the field in the message hashtable that contains the body of the message. (Other fields contain header information.)Returns
Returns a vector of messages, or null. A message is a hashtable where each key is the name of a header field (the names are converted to lower case) and the value is the content of that header field. The name of the field that stores the body of the message is provided by
Utilities.Methods
.Example
The following code downloads joe_user's e-mail and then displays its subject:
Vector theMail = Utilities.getPOP3Messages("popserver", "joe_user", "please", false); if (theMail == null) return "You do not have e-mail!"; // For each message, print the subject field int numberMsgs = theMail.size(); Hashtable aMessage = null; for (int i = 0; i < numberMsgs; i++) { aMessage = (Hashtable) theMail.elementAt(i); if (aMessage != null) { // Print the subject of the message (from the Subject: field) String s = "Message " + Integer.toString(i) + ": " + aMessage.get("subject"); System.out.println(s); } } // Extract the body of the last message String theBody = (String) aMessage.get(Utilities.msgbody);
Utilities.getPOP3Messages
Retrieves a vector of messages from a POP3 server.
Syntax
public static Vector getPOP3Messages(String host, String user, String password, boolean bRemove, int ctimeout)Parameters
host
- The host name of the POP3 server that holds this user's e-mail.
user
- The user's account name.
password
- The user's password.
bRemove
- A boolean value. Set to
true
to remove the messages from the POP3 server after they are downloaded. Set tofalse
to keep the messages on the POP3 server.
ctimeout (optional)
- The connection timeout in seconds. If not set, the default connection timeout is 120 seconds.
Description
The
getPOP3Messages
method retrieves a vector of messages from a POP3 server. The default connection timeout is 120 seconds.Returns
Returns a vector of messages, or null. A message is a hashtable where each key is the name of a header field (the names are converted to lower case) and the value is the content of that header field. The name of the field that stores the body of the message is provided by
Utilities.Methods
.
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.