/**
* 調用外部登錄接口,返回數據(json解析成對應的實體類)
*/
public static String callExterLogon(String phone, String password){
String uri = "http://test.fortune-net.cn:8777/a/x!invalidPhoneAndPassword.ql";
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
nvps.add(new BasicNameValuePair("phone", phone));
nvps.add(new BasicNameValuePair("password", password));
String content = "";
try {
content = CallExternalInterfaceUtils.officPost(uri,nvps);
} catch (Exception e) {
e.printStackTrace();
return null;
}
return content;
}
/***
/** 返回數據解析成實體類
/*
/
String content = callExterLogon(phone,password);
if(content!=null) callBackStatus=true;
if(callBackStatus){
//接受返回數據
System.out.println("success");
System.out.println(jsonToAdmin(content));
//保存
//xyBind = xyBindLogicInterface.saveOrUpdateQuickLiveAccount(admin.getOrganId(),phone,password);
}
//************************
********************************************************************************************************************
//泛型改良版。如果有必要!!!!!!!!!!
System.out.println(jsonToAdmin(content,Admin.class));
/**
* 轉換成對象
*/
private <T> T jsonToAdmin(String jsonData,Class<T> clazz){
ObjectMapper objectMapper;
JSONObject jsonObject = JSONObject.fromObject(jsonData);
Object object = jsonObject.get("admin");
T t = null;
if(jsonData!=null){
objectMapper = new ObjectMapper();
objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
try {
t = objectMapper.readValue(object.toString(),clazz);
} catch (IOException e) {
e.printStackTrace();
log.debug("信息獲取失敗");
}
}
return t;
}
/************************************************************************************************************************
/**
* 官方推薦post
* "http://targethost/login"
*/
public static String officPost(String uri,List<NameValuePair> nvps) throws Exception{
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpPost httpPost = new HttpPost(uri);
CloseableHttpResponse response = null;
HttpEntity entity2 = null;
JSONObject content = null;
String result = "";
try {
httpPost.setEntity(new UrlEncodedFormEntity(nvps));
response = httpclient.execute(httpPost);
//響應結果
if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
entity2 = response.getEntity();
result = EntityUtils.toString(entity2, "UTF-8");
}
//關閉流
EntityUtils.consume(entity2);
} catch (Exception e) {
e.printStackTrace();
}finally {
if(response!=null){
response.close();
}
InputStream instream = entity2.getContent();
if (instream != null) {
instream.close();
}
}
return result;
}
/****
/***
/** 外部系統數據形式 ,springMvc用responseBody 返回 toString()的json數據
/*
/
/**
* 測試驗證參數
* @return
*/
public String invalidPhoneAndPassword(){
Admin admin = new Admin();
admin.setPhone(phone);
admin.setPassword(password);
admin.setName("yxb");
jsonMap.put("admin",admin);
return "invalidPhoneAndPassword";
}
/**
/* 下面的方法需要修改之后應用於項目
/
private static Logger logger = Logger.getLogger(CallExternalInterfaceUtils.class);
/**
* get請求
* @return
*/
public static String doGet(String url) {
try {
/*HttpClient client = new DefaultHttpClient();
//發送get請求
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
*/
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpGet httpGet = new HttpGet("http://targethost/homepage");
CloseableHttpResponse response = httpclient.execute(httpGet);
/**請求發送成功,並得到響應**/
if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {
/**讀取服務器返回過來的json字符串數據**/
String strResult = EntityUtils.toString(response.getEntity());
return strResult;
}
}
catch (IOException e) {
e.printStackTrace();
}
return null;
}
/**
* post請求(用於key-value格式的參數)
* @param url
* @param params
* @return
*/
public static String doPost(String url, Map params){
BufferedReader in = null;
try {
// 定義HttpClient
HttpClient client = new DefaultHttpClient();
// 實例化HTTP方法
HttpPost request = new HttpPost();
request.setURI(new URI(url));
//設置參數
List<NameValuePair> nvps = new ArrayList<NameValuePair>();
for (Iterator iter = params.keySet().iterator(); iter.hasNext();) {
String name = (String) iter.next();
String value = String.valueOf(params.get(name));
nvps.add(new BasicNameValuePair(name, value));
//System.out.println(name +"-"+value);
}
request.setEntity(new UrlEncodedFormEntity(nvps,HTTP.UTF_8));
HttpResponse response = client.execute(request);
int code = response.getStatusLine().getStatusCode();
if(code == 200){ //請求成功
in = new BufferedReader(new InputStreamReader(response.getEntity()
.getContent(),"utf-8"));
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = in.readLine()) != null) {
sb.append(line + NL);
}
in.close();
return sb.toString();
}
else{ //
System.out.println("狀態碼:" + code);
return null;
}
}
catch(Exception e){
e.printStackTrace();
return null;
}
}
/**
* post請求(用於請求json格式的參數)
* @param url
* @param params
* @return
*/
public static String doPost(String url, String params) throws Exception {
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpPost httpPost = new HttpPost(url);// 創建httpPost
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Content-Type", "application/json");
String charSet = "UTF-8";
StringEntity entity = new StringEntity(params, charSet);
httpPost.setEntity(entity);
CloseableHttpResponse response = null;
try {
response = httpclient.execute(httpPost);
StatusLine status = response.getStatusLine();
int state = status.getStatusCode();
if (state == HttpStatus.SC_OK) {
HttpEntity responseEntity = response.getEntity();
String jsonString = EntityUtils.toString(responseEntity);
return jsonString;
}
else{
logger.error("請求返回:"+state+"("+url+")");
}
}
finally {
if (response != null) {
try {
response.close();
} catch (IOException e) {
e.printStackTrace();
}
}
try {
httpclient.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return null;
}