org.apache.tomcat.util.buf
Class UEncoder
java.lang.Object
org.apache.tomcat.util.buf.UEncoder
public final class UEncoder
- extends java.lang.Object
Efficient implementation for encoders.
This class is not thread safe - you need one encoder per thread.
The encoder will save and recycle the internal objects, avoiding
garbage.
You can add extra characters that you want preserved, for example
while encoding a URL you can add "/".
- Author:
- Costin Manolache, Remy Maucherat
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
UEncoder
public UEncoder()
setEncoding
public void setEncoding(java.lang.String s)
addSafeCharacter
public void addSafeCharacter(char c)
encodeURL
public CharChunk encodeURL(java.lang.String s,
int start,
int end)
throws java.io.IOException
- URL Encode string, using a specified encoding.
- Parameters:
buf
- The writers
- string to be encoded
- Throws:
java.io.IOException
- If an I/O error occurs
urlEncode
protected void urlEncode(CharChunk out,
ByteChunk bb)
throws java.io.IOException
- Throws:
java.io.IOException
Copyright © 2000-2009 Apache Software Foundation. All Rights Reserved.