随笔-9  评论-168  文章-266  trackbacks-0

发送请求 (get 与方法请求),以下代码经本人亲自调试可用!可以直接使用之。

注意:通过bufferedreader 读取远程返回的数据时,必须设置读取编码,否则中文会乱码!

packagecom.jiucool.www.struts.action;
 
importjava.io.bufferedreader;
importjava.io.dataoutputstream;
importjava.io.file;
importjava.io.filereader;
importjava.io.ioexception;
importjava.io.inputstreamreader;
importjava.net.httpurlconnection;
importjava.net.url;
importjava.net.urlencoder;
 
publicclass post_request{
        publicstaticfinalstring get_url="";
 
publicstaticfinalstring post_url="";
publicstaticvoid readcontentfromget()throwsioexception{
// 拼凑get请求的url字串,使用urlencoder.encode对特殊和不可见字符进行编码
string geturl = get_url"&activatecode="urlencoder.encode("久酷博客","utf-8");
url geturl =newurl(geturl);
// 根据拼凑的url,打开连接,url.openconnection函数会根据url的类型,
// 返回不同的urlconnection子类的对象,这里url是一个http,因此实际返回的是httpurlconnection
httpurlconnection connection =(httpurlconnection) geturl
.openconnection();
// 进行连接,但是实际上get request要在下一句的connection.getinputstream()函数中才会真正发到
// 服务器
connection.connect();
// 取得输入流,并使用reader读取
bufferedreader reader =newbufferedreader(newinputstreamreader(connection.getinputstream(),"utf-8"));//设置编码,否则中文乱码
system.out.println("=============================");
system.out.println("contents of get request");
system.out.println("=============================");
string lines;
while((lines= reader.readline())!=null){
        //lines = new string(lines.getbytes(), "utf-8");
system.out.println(lines);
}
reader.close();
// 断开连接
connection.disconnect();
system.out.println("=============================");
system.out.println("contents of get request ends");
system.out.println("=============================");
}
        publicstaticvoid readcontentfrompost()throwsioexception{
// post请求的url,与get不同的是不需要带参数
url posturl =newurl(post_url);
// 打开连接
httpurlconnection connection =(httpurlconnection) posturl
.openconnection();
// output to the connection. default is
// false, set to true because post
// method must write something to the
// connection
// 设置是否向connection输出,因为这个是post请求,参数要放在
// http正文内,因此需要设为true
connection.setdooutput(true);
// read from the connection. default is true.
connection.setdoinput(true);
// set the post method. default is get
connection.setrequestmethod("post");
// post cannot use caches
// post 请求不能使用缓存
connection.setusecaches(false);
// this method takes effects to
// every instances of this class.
// urlconnection.setfollowredirects是static函数,作用于所有的urlconnection对象。
// connection.setfollowredirects(true);
 
// this methods only
// takes effacts to this
// instance.
// urlconnection.setinstancefollowredirects是成员函数,仅作用于当前函数
connection.setinstancefollowredirects(true);
// set the content type to urlencoded,
// because we will write
// some url-encoded content to the
// connection. settings above must be set before connect!
// 配置本次连接的content-type,配置为application/x-www-form-urlencoded的
// 意思是正文是urlencoded编码过的form参数,下面我们可以看到我们对正文内容使用urlencoder.encode
// 进行编码
connection.setrequestproperty("content-type",
"application/x-www-form-urlencoded");
// 连接,从posturl.openconnection()至此的配置必须要在connect之前完成,
// 要注意的是connection.getoutputstream会隐含的进行connect。
connection.connect();
dataoutputstream out =newdataoutputstream(connection
.getoutputstream());
// the url-encoded contend
// 正文,正文内容其实跟get的url中'?'后的参数字符串一致
string content="key=j0r53nmbbd78x7m1pqml06u2&type=1&toemail=jiucool@gmail.com""&activatecode="urlencoder.encode("久酷博客","utf-8");
// dataoutputstream.writebytes将字符串中的16位的unicode字符以8位的字符形式写道流里面
out.writebytes(content);
out.flush();
out.close();// flush and close
bufferedreader reader =newbufferedreader(newinputstreamreader(connection.getinputstream(),"utf-8"));//设置编码,否则中文乱码
string line="";
system.out.println("=============================");
system.out.println("contents of post request");
system.out.println("=============================");
while((line= reader.readline())!=null){
//line = new string(line.getbytes(), "utf-8");
system.out.println(line);
}
system.out.println("=============================");
system.out.println("contents of post request ends");
system.out.println("=============================");
reader.close();
connection.disconnect();
}
}

httpurlconnection.connect函数,实际上只是建立了一个与服务器的tcp连接,并没有实际发送请求。无论是还是get,请求实际上直到httpurlconnection.getinputstream()这个函数里面才正式发送出去。

在readcontentfrompost() 中,顺序是重中之重,对connection对象的一切配置(那一堆set函数)都必须要在connect()函数执行之前完成。而对 outputstream的写操作,又必须要在inputstream的读操作之前。这些顺序实际上是由请求的格式决定的。

 请求实际上由两部分组成,一个是头,所有关于此次请求的配置都在头里面定义,一个是正文content,在connect()函数里面,会根据httpurlconnection对象的配置值生成头,因此在调用connect函数之前,就必须把所有的配置准备好。

紧接着头的是请求的正文,正文的内容通过outputstream写入,实际上outputstream不是一个网络流,充其量是个字符串流,往里面写入的东西不会立即发送到网络,而是在流关闭后,根据输入的内容生成正文。

至此,请求的东西已经准备就绪。在getinputstream()函数调用的时候,就会把准备好的请求正式发送到服务器了,然后返回一个输入流,用于读取服务器对于此次请求的返回信息。由于请求在getinputstream的时候已经发送出去了(包括头和正文),因此在getinputstream()函数之后对connection对象进行设置(对头的信息进行修改)或者写入 outputstream(对正文进行修改)都是没有意义的了,执行这些操作会导致异常的发生。

  

源文档 <http://www.jiucool.com/java-sending-http-requests-get-and-post-method-request/>

  

七月 9, 2009 |标签 post  http   | 浏览 4808

评论 0

一般的情况下我们都是使用ie或者navigator浏览器来访问一个web服务器,用来浏览页面查看信息或者提交一些数据等等。所访问的这些页面有的仅仅是一些普通的页面,有的需要用户登录后方可使用,或者需要认证以及是一些通过加密方式传输,例如https。目前我们使用的浏览器处理这些情况都不会构成问题。不过你可能在某些时候需要通过程序来访问这样的一些页面,比如从别人的网页中""一些数据;利用某些站点提供的页面来完成某种功能,例如说我们想知道某个手机号码的归属地而我们自己又没有这样的数据,因此只好借助其他公司已有的网站来完成这个功能,这个时候我们需要向网页提交手机号码并从返回的页面中解析出我们想要的数据来。如果对方仅仅是一个很简单的页面,那我们的程序会很简单,本文也就没有必要大张旗鼓的在这里浪费口舌。但是考虑到一些服务授权的问题,很多公司提供的页面往往并不是可以通过一个简单的url就可以访问的,而必须经过注册然后登录后方可使用提供服务的页面,这个时候就涉及到cookie问题的处理。我们知道目前流行的动态网页技术例如aspjsp无不是通过cookie来处理会话信息的。为了使我们的程序能使用别人所提供的服务页面,就要求程序首先登录后再访问服务页面,这过程就需要自行处理cookie,想想当你用java.net.httpurlconnection来完成这些功能时是多么恐怖的事情啊!况且这仅仅是我们所说的顽固的web服务器中的一个很常见的"顽固"!再有如通过http来上传文件呢?不需要头疼,这些问题有了""就很容易解决了! 

  

我们不可能列举所有可能的顽固,我们会针对几种最常见的问题进行处理。当然了,正如前面说到的,如果我们自己使用java.net.httpurlconnection来搞定这些问题是很恐怖的事情,因此在开始之前我们先要介绍一下一个开放源码的项目,这个项目就是apache开源组织中的httpclient,它隶属于jakartacommons项目,目前的版本是2.0rc2commons下本来已经有一个net的子项目,但是又把httpclient单独提出来,可见http服务器的访问绝非易事。 

  

commons-httpclient项目就是专门设计来简化http客户端与服务器进行各种通讯编程。通过它可以让原来很头疼的事情现在轻松的解决,例如你不再管是http或者https的通讯方式,告诉它你想使用https方式,剩下的事情交给httpclient替你完成。本文会针对我们在编写http客户端程序时经常碰到的几个问题进行分别介绍如何使用httpclient来解决它们,为了让读者更快的熟悉这个项目我们最开始先给出一个简单的例子来读取一个网页的内容,然后循序渐进解决掉前进中的所有问题。 

1读取网页(http/https)内容 

下面是我们给出的一个简单的例子用来访问某个页面 

  

*    

 * created on 2003-12-14 by skydong 

 */    

    

package http.demo;    

import java.io.ioexception;    

import org.apache.commons.httpclient.*;    

import org.apache.commons.httpclient.methods.*;    

/** *//**   

 * 最简单的http客户端,用来演示通过get或者post方式访问某个页面   

 * @author skydong 

 */   

public class simpleclient ...{    

    public static void main(string[] args) throws ioexception    

    ...{    

        httpclient client = new httpclient();       

        //设置代理服务器地址和端口         

     //client.gethostconfiguration().setproxy("proxy_host_addr",proxy_port);    

        //使用get方法,如果服务器需要通过https连接,那只需要将下面url中的http换成https    

        httpmethod method = new getmethod("";);     

        //使用post方法    

     //httpmethod method = new postmethod("";);     

        client.executemethod(method);    

        //打印服务器返回的状态    

     system.out.println(method.getstatusline());    

       //打印返回的信息    

     system.out.println(method.getresponsebodyasstring());    

       //释放连接    

     method.releaseconnection();    

    }    

}    

  

  

在这个例子中首先创建一个http客户端(httpclient)的实例,然后选择提交的方法是get或者post,最后在httpclient实例上执行提交的方法,最后从所选择的提交方法中读取服务器反馈回来的结果。这就是使用httpclient的基本流程。其实用一行代码也就可以搞定整个请求的过程,非常的简单! 

  

2get或者post方式向网页提交参数 

其实前面一个最简单的示例中我们已经介绍了如何使用get或者post方式来请求一个页面,本小节与之不同的是多了提交时设定页面所需的参数,我们知道如果是get的请求方式,那么所有参数都直接放到页面的url后面用问号与页面地址隔开,每个参数用&隔开,例如:http://java.sun.com?name=liudong&mobile=123456,但是当使用post方法时就会稍微有一点点麻烦。本小节的例子演示向如何查询手机号码所在的城市,代码如下: 

  

  

*    

 * created on 2009-7-9 by skydong    

 */    

package http.demo;    

import java.io.ioexception;    

import org.apache.commons.httpclient.*;    

import org.apache.commons.httpclient.methods.*;    

/** *//**   

 * 提交参数演示   

 * 该程序连接到一个用于查询手机号码所属地的页面   

 * 以便查询号码段1330227所在的省份以及城市   

 * @author skydong  

 */   

    

public class simplehttpclient ...{    

    public static void main(string[] args) throws ioexception    

    ...{    

        httpclient client = new httpclient();    

        client.gethostconfiguration().sethost("www.imobile.com.cn"80"http");    

        httpmethod method = getpostmethod();//使用post方式提交数据    

     client.executemethod(method);    

       //打印服务器返回的状态    

     system.out.println(method.getstatusline());    

       //打印结果页面    

    string response =   new string(method.getresponsebodyasstring().getbytes("8859_1"));    

       //打印返回的信息    

     system.out.println(response);    

        method.releaseconnection();    

    }    

    /** *//**   

     * 使用get方式提交数据   

   * @return   

     */   

    private static httpmethod getgetmethod()...{    

        return new getmethod("/simcard.php?simcard=1330227");    

    }    

    /** *//**   

     * 使用post方式提交数据   

   * @return   

     */   

    private static httpmethod getpostmethod()...{    

        postmethod post = new postmethod("/simcard.php");    

        namevaluepair simcard = new namevaluepair("simcard","1330227");    

        post.setrequestbody(new namevaluepair[] ...{ simcard});    

        return post;    

    }    

}    

  

在上面的例子中页面http://www.imobile.com.cn/simcard.php需要一个参数是simcard,这个参数值为手机号码段,即手机号码的前七位,服务器会返回提交的手机号码对应的省份、城市以及其他详细信息。get的提交方法只需要在url后加入参数信息,而post则需要通过namevaluepair类来设置参数名称和它所对应的值 

  

3处理页面重定向 

  

jsp/servlet编程中response.sendredirect方法就是使用http协议中的重定向机制。它与jsp中的的区别在于后者是在服务器中实现页面的跳转,也就是说应用容器加载了所要跳转的页面的内容并返回给客户端;而前者是返回一个状态码,这些状态码的可能值见下表,然后客户端读取需要跳转到的页面的url并重新加载新的页面。就是这样一个过程,所以我们编程的时候就要通过httpmethod.getstatuscode()方法判断返回值是否为下表中的某个值来判断是否需要跳转。如果已经确认需要进行页面跳转了,那么可以通过读取http头中的location属性来获取新的地址。 

  

状态码 

对应httpservletresponse的常量 

详细描述 

  

301 

sc_moved_permanently 

页面已经永久移到另外一个新地址 

  

302 

sc_moved_temporarily 

页面暂时移动到另外一个新的地址 

  

303 

sc_see_other 

客户端请求的地址必须通过另外的url来访问 

  

307 

sc_temporary_redirect 

sc_moved_temporarily 

  

  

下面的代码片段演示如何处理页面的重定向 

  

client.executemethod(post);    

        system.out.println(post.getstatusline().tostring());     

        post.releaseconnection();    

        //检查是否重定向    

     int statuscode = post.getstatuscode();    

        if ((statuscode == httpstatus.sc_moved_temporarily) ||    

            (statuscode == httpstatus.sc_moved_permanently) ||    

            (statuscode == httpstatus.sc_see_other) ||    

            (statuscode == httpstatus.sc_temporary_redirect))     

        ...{//读取新的url地址    

         header header = post.getresponseheader("location");    

              if (header != null) ...{    

                 string newuri = header.getvalue();    

                 if ((newuri == null) || (newuri.equals("")))    

                      newuri = "/";     

               getmethod redirect = new getmethod(newuri);    

               client.executemethod(redirect);    

                system.out.println("redirect:"  redirect.getstatusline().tostring());     

                redirect.releaseconnection();    

            } else ...{    

               system.out.println("invalid redirect");    

        } 

  

我们可以自行编写两个jsp页面,其中一个页面用response.sendredirect方法重定向到另外一个页面用来测试上面的例子。 

本小节应该说是http客户端编程中最常碰见的问题,很多网站的内容都只是对注册用户可见的,这种情况下就必须要求使用正确的用户名和口令登录成功后,方可浏览到想要的页面。因为http协议是无状态的,也就是连接的有效期只限于当前请求,请求内容结束后连接就关闭了。在这种情况下为了保存用户的登录信息必须使用到cookie机制。以jsp/servlet为例,当浏览器请求一个jsp或者是servlet的页面时,应用服务器会返回一个参数,名为jsessionid(因不同应用服务器而异),值是一个较长的唯一字符串的cookie,这个字符串值也就是当前访问该站点的会话标识。浏览器在每访问该站点的其他页面时候都要带上jsessionid这样的cookie信息,应用服务器根据读取这个会话标识来获取对应的会话信息。 

  

对于需要用户登录的网站,一般在用户登录成功后会将用户资料保存在服务器的会话中,这样当访问到其他的页面时候,应用服务器根据浏览器送上的cookie中读取当前请求对应的会话标识以获得对应的会话信息,然后就可以判断用户资料是否存在于会话信息中,如果存在则允许访问页面,否则跳转到登录页面中要求用户输入帐号和口令进行登录。这就是一般使用jsp开发网站在处理用户登录的比较通用的方法。 

  

这样一来,对于http的客户端来讲,如果要访问一个受保护的页面时就必须模拟浏览器所做的工作,首先就是请求登录页面,然后读取cookie值;再次请求登录页面并加入登录页所需的每个参数;最后就是请求最终所需的页面。当然在除第一次请求外其他的请求都需要附带上cookie信息以便服务器能判断当前请求是否已经通过验证。说了这么多,可是如果你使用httpclient的话,你甚至连一行代码都无需增加,你只需要先传递登录信息执行登录过程,然后直接访问想要的页面,跟访问一个普通的页面没有任何区别,因为类httpclient已经帮你做了所有该做的事情了,太棒了!下面的例子实现了这样一个访问的过程 

  

*    

 * created on 2009-7-9 by skydong 

 */    

package http.demo;    

import org.apache.commons.httpclient.*;    

import org.apache.commons.httpclient.cookie.*;    

import org.apache.commons.httpclient.methods.*;    

/** *//**   

 * 用来演示登录表单的示例   

 * @author skydong 

 */   

public class formlogindemo ...{    

    static final string logon_site = "localhost";    

    static final int    logon_port = 8080;    

    public static void main(string[] args) throws exception...{    

        httpclient client = new httpclient();    

        client.gethostconfiguration().sethost(logon_site, logon_port);    

        //模拟登录页面login.jsp->main.jsp    

        postmethod post = new postmethod("/main.jsp");    

        namevaluepair name = new namevaluepair("name""ld");         

        namevaluepair pass = new namevaluepair("password""ld");         

        post.setrequestbody(new namevaluepair[]...{name,pass});    

       int status = client.executemethod(post);    

       system.out.println(post.getresponsebodyasstring());    

       post.releaseconnection();      

       //查看cookie信息    

    cookiespec cookiespec = cookiepolicy.getdefaultspec();    

      cookie[] cookies = cookiespec.match(logon_site, logon_port, "/"false, client.getstate().getcookies());    

       if (cookies.length == 0) ...{    

           system.out.println("none");        

       } else ...{    

           for (int i = 0; i < cookies.length; i ) ...{    

              system.out.println(cookies[i].tostring());        

           }    

      }    

       //访问所需的页面main2.jsp    

        getmethod get = new getmethod("/main2.jsp");    

        client.executemethod(get);    

        system.out.println(get.getresponsebodyasstring());    

        get.releaseconnection();    

    }    

}    

  

  

5提交xml格式参数 

  

提交xml格式的参数很简单,仅仅是一个提交时候的contenttype问题,下面的例子演示从文件文件中读取xml信息并提交给服务器的过程,该过程可以用来测试web服务。

  

import java.io.file;    

import java.io.fileinputstream;    

import org.apache.commons.httpclient.httpclient;    

import org.apache.commons.httpclient.methods.entityenclosingmethod;    

import org.apache.commons.httpclient.methods.postmethod;    

/** *//**   

 * 用来演示提交xml格式数据的例子   

 */   

public class postxmlclient ...{    

    public static void main(string[] args) throws exception ...{    

        file input = new file("test.xml");    

        postmethod post = new postmethod("//localhost:8080/httpclient/xml.jsp");    

        // 设置请求的内容直接从文件中读取    

     post.setrequestbody(new fileinputstream(input));    

        if (input.length() < integer.max_value)     

           post.setrequestcontentlength(input.length());    

        else               

           post.setrequestcontentlength(entityenclosingmethod.content_length_chunked);    

        // 指定请求内容的类型    

     post.setrequestheader("content-type""text/xml; charset=gbk");    

        httpclient httpclient = new httpclient();     

        int result = httpclient.executemethod(post);     

        system.out.println("response status code: "   result);    

        system.out.println("response body: ");    

        system.out.println(post.getresponsebodyasstring());    

        post.releaseconnection();    

    }    

}    

  

6通过http上传文件 

  

httpclient使用了单独的一个httpmethod子类来处理文件的上传,这个类就是multipartpostmethod,该类已经封装了文件上传的细节,我们要做的仅仅是告诉它我们要上传文件的全路径即可,下面的代码片段演示如何使用这个类。 

  

multipartpostmethod filepost = new multipartpostmethod(targeturl);    

filepost.addparameter("filename", targetfilepath);    

httpclient client = new httpclient();    

//由于要上传的文件可能比较大,因此在此设置最大的连接超时时间    

client.gethttpconnectionmanager().getparams().setconnectiontimeout(5000);    

int status = client.executemethod(filepost);    

  

上面代码中,targetfilepath即为要上传的文件所在的路径。 

  

7访问启用认证的页面 

  

我们经常会碰到这样的页面,当访问它的时候会弹出一个浏览器的对话框要求输入用户名和密码后方可,这种用户认证的方式不同于我们在前面介绍的基于表单的用户身份验证。这是http的认证策略,httpclient支持三种认证方式包括:基本、摘要以及ntlm认证。其中基本认证最简单、通用但也最不安全;摘要认证是在http 1.1中加入的认证方式,而ntlm则是微软公司定义的而不是通用的规范,最新版本的ntlm是比摘要认证还要安全的一种方式。 

  

下面例子是从httpclientcvs服务器中下载的,它简单演示如何访问一个认证保护的页面: 

import org.apache.commons.httpclient.httpclient;    

import org.apache.commons.httpclient.usernamepasswordcredentials;    

import org.apache.commons.httpclient.methods.getmethod;    

public class basicauthenticationexample ...{    

   public basicauthenticationexample() ...{    

    }    

   public static void main(string[] args) throws exception ...{    

       httpclient client = new httpclient();    

        client.getstate().setcredentials(    

            "",    

            "realm",    

            new usernamepasswordcredentials("username""password")    

        );    

        getmethod get = new getmethod("";);    

        get.setdoauthentication( true );    

        int status = client.executemethod( get );    

        system.out.println(status ""  get.getresponsebodyasstring());    

        get.releaseconnection();    

    }    

}   

  

8多线程模式下使用httpclient 

  

多线程同时访问httpclient,例如同时从一个站点上下载多个文件。对于同一个httpconnection同一个时间只能有一个线程访问,为了保证多线程工作环境下不产生冲突,httpclient使用了一个多线程连接管理器的类:multithreadedhttpconnectionmanager,要使用这个类很简单,只需要在构造httpclient实例的时候传入即可,代码如下: 

  

multithreadedhttpconnectionmanager connectionmanager =     

   new multithreadedhttpconnectionmanager();    

httpclient client = new httpclient(connectionmanager);    

  

源文档 <http://www.ehelper.com.cn/blog/post/108.html>

posted on 2014-04-21 13:24 紫蝶∏飛揚↗ 阅读(16104) 评论(0)  编辑  收藏 所属分类: java

只有注册用户后才能发表评论。


网站导航:
              
 
网站地图