Searched defs:encoding (Results 1 - 6 of 6) sorted by relevance
/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | PreencodedMimeBodyPart.java | 53 * encoding). The data may have been encoded by the application, 55 * The encoding is supplied when this object is created. The data 64 private String encoding; field in class:PreencodedMimeBodyPart 68 * encoded using the specified encoding. The encoding must 71 * @param encoding the Content-Transfer-Encoding 73 public PreencodedMimeBodyPart(String encoding) { argument 74 this.encoding = encoding; 78 * Returns the content transfer encoding specifie [all...] |
H A D | MimeUtility.java | 75 * the String into another charset and then do the transfer-encoding. 112 * an encoding that allows normal end of line conventions is appropriate. 114 * data, but will require an encoding that preserves CR and LF characters 116 * System property is set to <code>"true"</code>, such an encoding will 123 * specified in the <code>file.encoding</code> System property. Most 135 * encoding is assumed. Otherwise, unknown values cause a MessagingException 181 * what encoding to use. If it returns non-null, return that value. 184 * the bytes in its input stream are US-ASCII, then the encoding 186 * the encoding is "base64". If less than half of the bytes are 187 * non-US-ASCII, then the encoding i 373 decode(InputStream is, String encoding) argument 406 encode(OutputStream os, String encoding) argument 443 encode(OutputStream os, String encoding, String filename) argument 532 encodeText(String text, String charset, String encoding) argument 709 encodeWord(String word, String charset, String encoding) argument 722 encodeWord(String string, String charset, String encoding, boolean encodingWord) argument [all...] |
H A D | MimeBodyPart.java | 62 * in certain portions of certain headers, by encoding those characters. 218 * encoding of the content. <p> 251 * encoding of the content. <p> 334 * Returns the content transfer encoding from the 454 * description contains only US-ASCII characters, no encoding 457 * Note that if the charset encoding process fails, a 483 * contains only US-ASCII characters, no encoding is done and 486 * Note that if the charset encoding process fails, a 492 * @param charset Charset for encoding 519 * filename. While such encoding i 847 attachFile(File file, String contentType, String encoding) argument 872 attachFile(String file, String contentType, String encoding) argument 884 private String encoding; field in class:MimeBodyPart.EncodedFileDataSource 886 EncodedFileDataSource(File file, String contentType, String encoding) argument 1414 setEncoding(MimePart part, String encoding) argument 1424 restrictEncoding(MimePart part, String encoding) argument [all...] |
/javamail/outlook/src/main/java/ |
H A D | MSBodyPart.java | 48 private String encoding; field in class:MSBodyPart 54 String disposition, String encoding) { 59 this.encoding = encoding; 70 return encoding; 53 MSBodyPart(byte[] content, int start, int end, String disposition, String encoding) argument
|
/javamail/mail/src/main/java/com/sun/mail/imap/protocol/ |
H A D | BODYSTRUCTURE.java | 64 public String encoding; // Encoding field in class:BODYSTRUCTURE 257 encoding = r.readAtomString(); 258 if (encoding != null && encoding.equalsIgnoreCase("NIL")) 259 encoding = null; 261 System.out.println("DEBUG IMAP: encoding " + encoding);
|
/javamail/mail/src/main/java/com/sun/mail/util/logging/ |
H A D | MailHandler.java | 152 * <li><handler-name>.encoding the name of the Java 156 * platform encoding). 499 * Holds the encoding name for this handler. 502 private String encoding; field in class:MailHandler 1011 * Return the character encoding for this <tt>Handler</tt>. 1013 * @return The encoding name. May be null, which indicates the default 1014 * encoding should be used. 1018 return this.encoding; 1022 * Set the character encoding used by this <tt>Handler</tt>. 1024 * The encoding shoul 1035 setEncoding(String encoding) argument 1818 contentWithEncoding(String type, String encoding) argument [all...] |
Completed in 49 milliseconds