http協議util
address(url地址),str(數據參數)
private static HttpMethod getPostJsonMethodInRequestBody(String address, String str) {
PostMethod post = new PostMethod(address);
post.addRequestHeader("Content-Type", "application/json; charset=utf-8");
post.setRequestBody(str);
return post;
}