| java.lang.Object java.io.Writer com.quadcap.app.bugdb.HtmlWriter
HtmlWriter | public class HtmlWriter extends Writer (Code) | | Perform HTML encoding, replacing HTML markup symbols with their entity
representation.
author: Stan Bailes |
Method Summary | |
public void | close() Close the underlying writer. | public void | flush() Flush the underlying writer. | public void | write(int c) Write a single character. | public void | write(char cbuf, int offset, int len) Write a portion of a character array. |
ampAMP | final static char[] ampAMP(Code) | | |
ampGT | final static char[] ampGT(Code) | | |
ampLT | final static char[] ampLT(Code) | | |
HtmlWriter | public HtmlWriter(Writer os)(Code) | | Construct a new HtmlWriter, as a filter on the specified writer
Parameters: os - the underlying writer |
close | public void close() throws IOException(Code) | | Close the underlying writer.
exception: IOException - may be thrown by the underlying writer |
flush | public void flush() throws IOException(Code) | | Flush the underlying writer.
exception: IOException - may be thrown by the underlying writer |
write | public void write(int c) throws IOException(Code) | | Write a single character.
Parameters: c - the character exception: IOException - may be thrown by the underlying writer |
write | public void write(char cbuf, int offset, int len) throws IOException(Code) | | Write a portion of a character array.
Parameters: cbuf - the character array Parameters: offset - the first position to write Parameters: len - the number of characters to write exception: IOException - may be thrown by the underlying writer |
|
|