普通表單POST

2018-12-27 20:33 更新

一般POST提交都是基于表單提交,即提交的時(shí)候會(huì)攜帶Content-Type="application/x-www-form-urlencoded"使用方式如下:

String responseData = HttpClient
                .post("http://localhost:8080/okhttp-server-test/userInfo/create")
                //請求方式和請求url
                .param("username","mzlion")  // 表單參數(shù)
                .param("userPwd", "123")     // 表單參數(shù)
                //queryString("queryTime","20160530") //url參數(shù)
                .execute()
                .asString();
                //formParam()重載方法還支持`Map<String,String>`

以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)