KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > maverick > http > GetMethod


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.maverick.http;
21
22 import java.util.Enumeration JavaDoc;
23 import java.util.Vector JavaDoc;
24
25 import com.maverick.util.URLUTF8Encoder;
26
27 /**
28  *
29  * @author Lee David Painter <a HREF="mailto:lee@3sp.com">&lt;lee@3sp.com&gt;</a>
30  */

31 public class GetMethod extends HttpMethod {
32
33     /**
34      *
35      * @param uri The full query string for this request including parameters
36      * i.e /index.php?foo=bar
37      */

38     public GetMethod(String JavaDoc uri) {
39         super("GET", uri); //$NON-NLS-1$
40
}
41
42     public GetMethod(String JavaDoc name, String JavaDoc uri) {
43         super(name, uri);
44     }
45
46     public String JavaDoc getURI() {
47
48         String JavaDoc encodedParams = ""; //$NON-NLS-1$
49
for (Enumeration JavaDoc e = getParameterNames(); e.hasMoreElements();) {
50             String JavaDoc name = (String JavaDoc) e.nextElement();
51             Vector JavaDoc values = getParameterValueList(name);
52             for (Enumeration JavaDoc e2 = values.elements(); e2.hasMoreElements();) {
53                 String JavaDoc value = (String JavaDoc) e2.nextElement();
54                 encodedParams += (encodedParams.length() > 0 ? "&" : "") + URLUTF8Encoder.encode(name, true) + "=" + //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
55
URLUTF8Encoder.encode(value, true);
56             }
57         }
58
59         if (super.getURI().indexOf('?') > 0 && encodedParams.length() > 0)
60             return super.getURI() + "&" + encodedParams; //$NON-NLS-1$
61
else
62             return super.getURI() + (encodedParams.length() > 0 ? ("?" + encodedParams) : ""); //$NON-NLS-1$ //$NON-NLS-2$
63
}
64 }
65
Popular Tags