[HttpClient]傳遞參數

來源:互聯網
上載者:User

標籤:

package com.jerry.httpclient;import java.io.UnsupportedEncodingException;import java.util.ArrayList;import java.util.List;import org.apache.http.HttpEntity;import org.apache.http.NameValuePair;import org.apache.http.client.entity.UrlEncodedFormEntity;import org.apache.http.client.methods.CloseableHttpResponse;import org.apache.http.client.methods.HttpPost;import org.apache.http.impl.client.CloseableHttpClient;import org.apache.http.impl.client.HttpClients;import org.apache.http.message.BasicNameValuePair;import org.apache.http.util.EntityUtils;/** *  * @author Jerry * @date 2015年2月11日 下午11:44:46 */public class ParameterDemo {    public static void main(String[] args) {        CloseableHttpClient client = HttpClients.createDefault();        HttpPost httpPost = new HttpPost("http://localhost:8080/services/query");        List<NameValuePair> params = new ArrayList<>();        params.add(new BasicNameValuePair("word", "女神"));        try {            httpPost.setEntity(new UrlEncodedFormEntity(params, "utf-8"));            CloseableHttpResponse response = client.execute(httpPost);            System.out.println(response.getStatusLine());            HttpEntity entity = response.getEntity();            System.out.println(EntityUtils.toString(entity));            EntityUtils.consume(entity);        } catch (Exception e) {            // TODO Auto-generated catch block            e.printStackTrace();        }            }}

 

package com.jerry.servlet;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;/** *  * @author Jerry * @date 2015年2月11日 下午11:31:16 */public class DictionaryServlet extends HttpServlet{        /**     *      */    private static final long serialVersionUID = 1L;    @Override    protected void doGet(HttpServletRequest req, HttpServletResponse resp)            throws ServletException, IOException {        // TODO Auto-generated method stub        req.setCharacterEncoding("utf-8");        resp.setCharacterEncoding("utf-8");        PrintWriter out = resp.getWriter();        String chineseWord = req.getParameter("word");        String englishWord = translate(chineseWord);        out.write(englishWord);    }        private String translate(String chineseWord) {        // TODO Auto-generated method stub        String result = "";        if ("女神".equals(chineseWord)) {            result = "goddness";        } else if ("屌絲".equals(chineseWord)) {            result = "loser";        } else {            result = "查無此單詞";        }        return result;    }    @Override    protected void doPost(HttpServletRequest req, HttpServletResponse resp)            throws ServletException, IOException {        // TODO Auto-generated method stub        doGet(req, resp);    }}

 

[HttpClient]傳遞參數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.