org.mortbay.jetty
Class AbstractGenerator.OutputWriter
java.lang.Object
java.io.Writer
org.mortbay.jetty.AbstractGenerator.OutputWriter
- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable, java.lang.Appendable
- Direct Known Subclasses:
- HttpConnection.OutputWriter
- Enclosing class:
- AbstractGenerator
public static class AbstractGenerator.OutputWriter
- extends java.io.Writer
OutputWriter.
A writer that can wrap a AbstractGenerator.Output
stream and provide
character encodings.
The UTF-8 encoding is done by this class and no additional
buffers or Writers are used.
The UTF-8 code was inspired by http://javolution.org
Fields inherited from class java.io.Writer |
lock |
Methods inherited from class java.io.Writer |
append, append, append, write, write, write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AbstractGenerator.OutputWriter
public AbstractGenerator.OutputWriter(AbstractGenerator.Output out)
setCharacterEncoding
public void setCharacterEncoding(java.lang.String encoding)
close
public void close()
throws java.io.IOException
- Specified by:
close
in interface java.io.Closeable
- Specified by:
close
in class java.io.Writer
- Throws:
java.io.IOException
flush
public void flush()
throws java.io.IOException
- Specified by:
flush
in interface java.io.Flushable
- Specified by:
flush
in class java.io.Writer
- Throws:
java.io.IOException
write
public void write(java.lang.String s,
int offset,
int length)
throws java.io.IOException
- Overrides:
write
in class java.io.Writer
- Throws:
java.io.IOException
write
public void write(char[] s,
int offset,
int length)
throws java.io.IOException
- Specified by:
write
in class java.io.Writer
- Throws:
java.io.IOException
Copyright © 1995-2010 Mort Bay Consulting. All Rights Reserved.