GNU Classpath merge.
2002-10-31 Stephen Crawley <crawley@dstc.edu.au> * java/lang/Double.java (valueOf): Return new Double(parseDouble(s)). 2002-10-31 Wu Gansha <gansha.wu@intel.com>: * java/util/ArrayList.java (readObject, writeObject): Only read/write size items. 2002-10-31 Wu Gansha <gansha.wu@intel.com>: * java/io/DataInputStream.java (convertFromUTF): Give StringBuffer an initial estimated size to avoid enlarge buffer frequently. 2002-10-31 Wu Gansha <gansha.wu@intel.com>: * java/lang/reflect/Proxy.java (ProxyType): Set loader to System ClassLoader when null. (ProxyType.hashCode): Loader null check no longer needed. (ProxyType.sameTypes): New method. (ProxyType.equals): Use new method. 2002-10-31 Mark Wielaard <mark@klomp.org> * java/net/URLDecoder.java (decode): Initialize Stringbuffer size to length of String. * java/net/URLEncoder.java (encode): Likewise. 2002-10-31 Mark Wielaard <mark@klomp.org> * java/util/zip/ZipInputStream.java (getNextEntry): Throw IOException when stream is closed. (closeEntry): Likewise. (read): Likewise. * java/util/zip/ZipOutputStream.java (putNextEntry): Throw ZipException when no entry active. (closeEntry): Likewise. (write): Likewise. From-SVN: r58772
This commit is contained in:
parent
c33c471beb
commit
de36f65dd1
9 changed files with 109 additions and 32 deletions
|
@ -63,7 +63,7 @@ import java.io.UnsupportedEncodingException;
|
|||
public class URLDecoder
|
||||
{
|
||||
/**
|
||||
* Constructor for compatibility with Sun's JDK.
|
||||
* Public contructor. Note that this class has only static methods.
|
||||
*/
|
||||
public URLDecoder ()
|
||||
{
|
||||
|
@ -116,8 +116,6 @@ public class URLDecoder
|
|||
public static String decode(String s, String encoding)
|
||||
throws UnsupportedEncodingException
|
||||
{
|
||||
StringBuffer result = new StringBuffer();
|
||||
|
||||
// First convert all '+' characters to spaces.
|
||||
String str = s.replace('+', ' ');
|
||||
|
||||
|
@ -126,6 +124,7 @@ public class URLDecoder
|
|||
int start = 0;
|
||||
byte[] bytes = null;
|
||||
int length = str.length();
|
||||
StringBuffer result = new StringBuffer(length);
|
||||
while ((i = str.indexOf('%', start)) >= 0)
|
||||
{
|
||||
// Add all non-encoded characters to the result buffer
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue