java.lang.Objectjavax.mail.internet.InternetHeaders
public class InternetHeaders
InternetHeaders is a utility class that manages RFC822 style
headers. Given an RFC822 format message stream, it reads lines
until the blank line that indicates end of header. The input stream
is positioned at the start of the body. The lines are stored
within the object and can be extracted as either Strings or
Header objects.
This class is mostly intended for service providers. MimeMessage and MimeBody use this class for holding their headers.
A note on RFC822 and MIME headers
RFC822 and MIME header fields must contain only
US-ASCII characters. If a header contains non US-ASCII characters,
it must be encoded as per the rules in RFC 2047. The MimeUtility
class provided in this package can be used to to achieve this.
Callers of the setHeader, addHeader, and
addHeaderLine methods are responsible for enforcing
the MIME requirements for the specified headers. In addition, these
header fields must be folded (wrapped) before being sent if they
exceed the line length limitation for the transport (1000 bytes for
SMTP). Received headers may have been folded. The application is
responsible for folding and unfolding headers as appropriate.
MimeUtility| Nested Class Summary | |
|---|---|
protected static class |
InternetHeaders.InternetHeader
An individual internet header. |
| Field Summary | |
|---|---|
protected List |
headers
The actual list of Headers, including placeholder entries. |
| Constructor Summary | |
|---|---|
InternetHeaders()
Create an empty InternetHeaders object. |
|
InternetHeaders(InputStream is)
Read and parse the given RFC822 message stream till the blank line separating the header from the body. |
|
| Method Summary | |
|---|---|
void |
addHeader(String name,
String value)
Add a header with the specified name and value to the header list. |
void |
addHeaderLine(String line)
Add an RFC822 header line to the header store. |
Enumeration |
getAllHeaderLines()
Return all the header lines as an Enumeration of Strings. |
Enumeration |
getAllHeaders()
Return all the headers as an Enumeration of Header objects. |
String[] |
getHeader(String name)
Return all the values for the specified header. |
String |
getHeader(String name,
String delimiter)
Get all the headers for this header name, returned as a single String, with headers separated by the delimiter. |
Enumeration |
getMatchingHeaderLines(String[] names)
Return all matching header lines as an Enumeration of Strings. |
Enumeration |
getMatchingHeaders(String[] names)
Return all matching Header objects. |
Enumeration |
getNonMatchingHeaderLines(String[] names)
Return all non-matching header lines |
Enumeration |
getNonMatchingHeaders(String[] names)
Return all non-matching Header objects. |
void |
load(InputStream is)
Read and parse the given RFC822 message stream till the blank line separating the header from the body. |
void |
removeHeader(String name)
Remove all header entries that match the given name |
void |
setHeader(String name,
String value)
Change the first header line that matches name to have value, adding a new header if no existing header matches. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected List headers
Received and
Return-Path headers). If no existing header
or placeholder for the header is found, new headers are
added after the special placeholder with the name ":".
| Constructor Detail |
|---|
public InternetHeaders()
public InternetHeaders(InputStream is) throws MessagingException
For efficiency, wrap a BufferedInputStream around the actual input stream and pass it as the parameter.
No placeholder entries are inserted; the original order of the headers is preserved.
is - RFC822 input stream
MessagingException| Method Detail |
|---|
public void load(InputStream is) throws MessagingException
Note that the header lines are added into this InternetHeaders object, so any existing headers in this object will not be affected. Headers are added to the end of the existing list of headers, in order.
is - RFC822 input stream
MessagingExceptionpublic String[] getHeader(String name)
null
if no headers with the specified name exist.
name - header name
public String getHeader(String name, String delimiter)
null, only the first header is
returned. Returns null
if no headers with the specified name exist.
name - header namedelimiter - delimiter
public void setHeader(String name, String value)
Note that RFC822 headers can only contain US-ASCII characters
name - header namevalue - header valuepublic void addHeader(String name, String value)
The current implementation knows about the preferred order of most
well-known headers and will insert headers in that order. In
addition, it knows that Received headers should be
inserted in reverse order (newest before oldest), and that they
should appear at the beginning of the headers, preceeded only by
a possible Return-Path header.
Note that RFC822 headers can only contain US-ASCII characters.
name - header namevalue - header valuepublic void removeHeader(String name)
name - header namepublic Enumeration getAllHeaders()
Header objects.
public Enumeration getMatchingHeaders(String[] names)
Header objects.
public Enumeration getNonMatchingHeaders(String[] names)
Header objects.
public void addHeaderLine(String line)
Note that RFC822 headers can only contain US-ASCII characters
line - raw RFC822 header linepublic Enumeration getAllHeaderLines()
public Enumeration getMatchingHeaderLines(String[] names)
public Enumeration getNonMatchingHeaderLines(String[] names)
Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
7 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)