符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
public static String sendHttpRequestByPost(final String address,String encode,MatterReflectDTO dto){
创新互联专业为企业提供安州网站建设、安州做网站、安州网站设计、安州网站制作等企业网站建设、网页设计与制作、安州企业网站模板建站服务,十多年安州做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
String result = "";
DefaultHttpClient defaultHttpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(address);
String jsonString = dto.toString();
try {
StringEntity stringEntity = new StringEntity(new GsonBuilder().create().toJson(dto));
System.out.println(stringEntity.toString());
httpPost.setEntity(stringEntity);
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Content-type", "application/json");
httpPost.setHeader("Accept-Encoding", "gzip");
HttpResponse httpResponse = defaultHttpClient.execute(httpPost);
System.out.println("请求结果:"+httpResponse.getStatusLine().getStatusCode());
int code = httpResponse.getStatusLine().getStatusCode();
if(code ==200){
InputStream is = httpResponse.getEntity().getContent();
result = "true";
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
服务器端使用的是.net暂时就不贴出来了,需要注意的是并不是通过参数传递的。