Benoit Sigoure 1f1b8d8325 Add a new faster, memory efficient URL decoder.
Query string parameters need to be decoded as per RFC 3986, Section 2.
The implementation of the URLDecoder in the JDK is slow because it takes
long and inefficient code paths, and it generates a lot more garbage
than necessary.  This decoder is about 2x faster and doesn't allocate
any memory in the easy case where the decoded string is unchanged.
When the string needs to be changed, only one buffer is allocated for
the decoded string.
2011-01-04 14:44:36 +09:00
..
2009-08-28 07:15:49 +00:00
2010-05-07 11:21:10 +00:00
2009-08-28 07:15:49 +00:00
2010-03-17 05:53:34 +00:00