2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / java / net / URLDecoder.java
blob4fe77d3c93322fdaf19c2c2d5975e30765d78851
1 /* URLDecoder.java -- Class to decode URL's from encoded form.
2 Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package java.net;
40 import java.io.UnsupportedEncodingException;
42 /**
43 * This utility class contains static methods that converts a
44 * string encoded in the x-www-form-urlencoded format to the original
45 * text. The x-www-form-urlencoded format replaces certain disallowed
46 * characters with encoded equivalents. All upper case and lower case
47 * letters in the US alphabet remain as is, the space character (' ')
48 * is replaced with '+' sign, and all other characters are converted to a
49 * "%XX" format where XX is the hexadecimal representation of that character
50 * in a given character encoding (default is "UTF-8").
51 * <p>
52 * This method is very useful for decoding strings sent to CGI scripts
54 * Written using on-line Java Platform 1.2/1.4 API Specification.
55 * Status: Believed complete and correct.
57 * @since 1.2
59 * @author Warren Levy <warrenl@cygnus.com>
60 * @author Aaron M. Renn (arenn@urbanophile.com) (documentation comments)
61 * @author Mark Wielaard (mark@klomp.org)
63 public class URLDecoder
65 /**
66 * Public contructor. Note that this class has only static methods.
68 public URLDecoder ()
72 /**
73 * This method translates the passed in string from x-www-form-urlencoded
74 * format using the default encoding "UTF-8" to decode the hex encoded
75 * unsafe characters.
77 * @param s the String to convert
79 * @return the converted String
81 * @deprecated
83 public static String decode(String s)
85 try
87 return decode(s, "UTF-8");
89 catch (UnsupportedEncodingException uee)
91 // Should never happen since UTF-8 encoding should always be supported
92 return s;
96 /**
97 * This method translates the passed in string from x-www-form-urlencoded
98 * format using the given character encoding to decode the hex encoded
99 * unsafe characters.
101 * This implementation will decode the string even if it contains
102 * unsafe characters (characters that should have been encoded) or if the
103 * two characters following a % do not represent a hex encoded byte.
104 * In those cases the unsafe character or the % character will be added
105 * verbatim to the decoded result.
107 * @param s the String to convert
108 * @param encoding the character encoding to use the decode the hex encoded
109 * unsafe characters
111 * @return the converted String
113 * @exception UnsupportedEncodingException If the named encoding is not
114 * supported
116 * @since 1.4
118 public static String decode(String s, String encoding)
119 throws UnsupportedEncodingException
121 // First convert all '+' characters to spaces.
122 String str = s.replace('+', ' ');
124 // Then go through the whole string looking for byte encoded characters
125 int i;
126 int start = 0;
127 byte[] bytes = null;
128 int length = str.length();
129 StringBuffer result = new StringBuffer(length);
130 while ((i = str.indexOf('%', start)) >= 0)
132 // Add all non-encoded characters to the result buffer
133 result.append(str.substring(start, i));
134 start = i;
136 // Get all consecutive encoded bytes
137 while ((i+2 < length) && (str.charAt(i) == '%'))
138 i += 3;
140 // Decode all these bytes
141 if ((bytes == null) || (bytes.length < ((i-start)/3)))
142 bytes = new byte[((i-start)/3)];
144 int index = 0;
147 while (start < i)
149 String sub = str.substring(start + 1, start + 3);
150 bytes[index] = (byte)Integer.parseInt(sub, 16);
151 index++;
152 start += 3;
155 catch (NumberFormatException nfe)
157 // One of the hex encoded strings was bad
160 // Add the bytes as characters according to the given encoding
161 result.append(new String(bytes, 0, index, encoding));
163 // Make sure we skip to just after a % sign
164 // There might not have been enough encoded characters after the %
165 // or the hex chars were not actually hex chars (NumberFormatException)
166 if (start < length && s.charAt(start) == '%')
168 result.append('%');
169 start++;
173 // Add any characters left
174 if (start < str.length())
175 result.append(str.substring(start));
177 return result.toString();
180 } // class URLDecoder