private String GetUserInfo() {
try {
// Open a client
HttpClient httpClient = new DefaultHttpClient();
// Input a url
String path="http://192.168.11.117:10000/GamingPlatformService/GetCurrency";// wcf地址
HttpPost httpPost = new HttpPost(path);
// httpPost.setHeader("Accept", "application/json");
// Make post data
// 向WCF服务发送请求
HttpResponse response = httpClient.execute(httpPost);
httpClient.getParams().setIntParameter(HttpConnectionParams.CONNECTION_TIMEOUT, 5000);
int statusCode =response.getStatusLine().getStatusCode();
// 判断是否成功
if ( statusCode == HttpURLConnection.HTTP_OK){
HttpEntity responseEntity = response.getEntity();
String result = EntityUtils.toString(responseEntity, "UTF-8");
String[] key = new String[1];
key[0] = "Code";
String[] jsonResultString = takePhotoJson.getJSON(result, key);
System.out.println("result=" + jsonResultString[0]);
return jsonResultString[0];
}else {
return "获取失败";
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
return null;
}
}