类 Base64OutputStream
java.lang.Object
java.io.OutputStream
java.io.FilterOutputStream
com.sh.mail.mime4j.codec.Base64OutputStream
- 所有已实现的接口:
Closeable,Flushable,AutoCloseable
Description:
Title:首亨软件 - TSS/CRM等
- 从以下版本开始:
- Aug 16, 2012
-
字段概要
从类继承的字段 java.io.FilterOutputStream
out -
构造器概要
构造器构造器说明Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the default line length (76) and line separator (CRLF).Base64OutputStream(OutputStream out, int lineLength) Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the given line length and the default line separator (CRLF).Base64OutputStream(OutputStream out, int lineLength, byte[] lineSeparator) Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the given line length and line separator. -
方法概要
从类继承的方法 java.io.OutputStream
nullOutputStream
-
构造器详细资料
-
Base64OutputStream
Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the default line length (76) and line separator (CRLF).- 参数:
out- underlying output stream.
-
Base64OutputStream
Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the given line length and the default line separator (CRLF).The given line length will be rounded up to the nearest multiple of 4. If the line length is zero then the output will not be split into lines.
- 参数:
out- underlying output stream.lineLength- desired line length.
-
Base64OutputStream
Creates aBase64OutputStreamthat writes the encoded data to the given output stream using the given line length and line separator.The given line length will be rounded up to the nearest multiple of 4. If the line length is zero then the output will not be split into lines and the line separator is ignored.
The line separator must not include characters from the BASE64 alphabet (including the padding character
=).- 参数:
out- underlying output stream.lineLength- desired line length.lineSeparator- line separator to use.
-
-
方法详细资料
-
write
- 覆盖:
write在类中FilterOutputStream- 抛出:
IOException
-
write
- 覆盖:
write在类中FilterOutputStream- 抛出:
IOException
-
write
- 覆盖:
write在类中FilterOutputStream- 抛出:
IOException
-
flush
- 指定者:
flush在接口中Flushable- 覆盖:
flush在类中FilterOutputStream- 抛出:
IOException
-
close
- 指定者:
close在接口中AutoCloseable- 指定者:
close在接口中Closeable- 覆盖:
close在类中FilterOutputStream- 抛出:
IOException
-