jltools.util
Class  UnicodeWriter
java.lang.Object
  |
  +--java.io.Writer
        |
        +--java.io.FilterWriter
              |
              +--jltools.util.UnicodeWriter
- public class UnicodeWriter
- extends java.io.FilterWriter
  
Output stream for writing unicode.  Non-ASCII Unicode characters
 are escaped.
| Fields inherited from class java.io.FilterWriter | 
out | 
 
| Fields inherited from class java.io.Writer | 
lock | 
 
 
| 
Method Summary | 
 void | 
write(char[] cbuf,
      int off,
      int len)
 
            | 
 void | 
write(int c)
 
            | 
 void | 
write(java.lang.String str,
      int off,
      int len)
 
            | 
 
| Methods inherited from class java.io.FilterWriter | 
close, flush | 
 
| Methods inherited from class java.io.Writer | 
write, write | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
UnicodeWriter
public UnicodeWriter(java.io.Writer out)
write
public void write(int c)
           throws java.io.IOException
- Overrides:
 write in class java.io.FilterWriter
 
write
public void write(char[] cbuf,
                  int off,
                  int len)
           throws java.io.IOException
- Overrides:
 write in class java.io.FilterWriter
 
write
public void write(java.lang.String str,
                  int off,
                  int len)
           throws java.io.IOException
- Overrides:
 write in class java.io.FilterWriter