|
|
|
@ -1,14 +1,9 @@
|
|
|
|
|
package com.platform.http.gfs;
|
|
|
|
|
|
|
|
|
|
import java.beans.IntrospectionException;
|
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import javax.sound.midi.SysexMessage;
|
|
|
|
|
|
|
|
|
|
import net.sf.json.JSONObject;
|
|
|
|
|
|
|
|
|
|
import org.apache.http.HttpEntity;
|
|
|
|
@ -21,32 +16,34 @@ import org.apache.http.impl.client.DefaultHttpClient;
|
|
|
|
|
import org.apache.http.message.BasicNameValuePair;
|
|
|
|
|
import org.apache.http.util.EntityUtils;
|
|
|
|
|
|
|
|
|
|
import com.platform.entities.FolderNode;
|
|
|
|
|
import com.platform.utils.Bean2MapUtils;
|
|
|
|
|
|
|
|
|
|
public class HttpUtils {
|
|
|
|
|
|
|
|
|
|
public Object sendPost(String subUrl, Object data) {
|
|
|
|
|
Map<String, Object> resultMap = null;
|
|
|
|
|
public String sendPost(String subUrl, Object data) {
|
|
|
|
|
String resultStr = null;
|
|
|
|
|
HttpClient client = new DefaultHttpClient();
|
|
|
|
|
HttpPost post = new HttpPost(HttpClientConstant.URL_IP_PORT + subUrl);
|
|
|
|
|
try {
|
|
|
|
|
// 传参
|
|
|
|
|
List<NameValuePair> parameters = new ArrayList<NameValuePair>();
|
|
|
|
|
// 转 map
|
|
|
|
|
Map<String, Object> map = Bean2MapUtils.convertBean(data);
|
|
|
|
|
// 转json
|
|
|
|
|
JSONObject jsondata = JSONObject.fromObject(map);
|
|
|
|
|
// 封装数据
|
|
|
|
|
parameters.add(new BasicNameValuePair("jsondata", jsondata
|
|
|
|
|
.toString()));
|
|
|
|
|
parameters.add(new BasicNameValuePair("type", data.getClass()
|
|
|
|
|
.getName()));
|
|
|
|
|
// 传参 放入 url的 form中
|
|
|
|
|
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(parameters,
|
|
|
|
|
"UTF-8");
|
|
|
|
|
post.setEntity(entity);
|
|
|
|
|
|
|
|
|
|
if (null != data) {
|
|
|
|
|
// 转 map
|
|
|
|
|
Map<String, Object> map = Bean2MapUtils.convertBean(data);
|
|
|
|
|
// 转json
|
|
|
|
|
JSONObject jsondata = JSONObject.fromObject(map);
|
|
|
|
|
// 封装数据
|
|
|
|
|
parameters.add(new BasicNameValuePair("jsondata", jsondata
|
|
|
|
|
.toString()));
|
|
|
|
|
parameters.add(new BasicNameValuePair("type", data.getClass()
|
|
|
|
|
.getName()));
|
|
|
|
|
// 传参 放入 url的 form中
|
|
|
|
|
UrlEncodedFormEntity entity = new UrlEncodedFormEntity(parameters,
|
|
|
|
|
"UTF-8");
|
|
|
|
|
post.setEntity(entity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 发送
|
|
|
|
|
HttpResponse respone = client.execute(post);
|
|
|
|
|
HttpEntity result = respone.getEntity();
|
|
|
|
@ -60,29 +57,29 @@ public class HttpUtils {
|
|
|
|
|
return resultStr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
|
Date d = new Date();
|
|
|
|
|
HttpUtils ht = new HttpUtils();
|
|
|
|
|
BaseForm1 bas = new BaseForm1();
|
|
|
|
|
bas.setId("12");
|
|
|
|
|
bas.setName("n12");
|
|
|
|
|
Object rest = ht.sendPost("/hello/gain", bas);
|
|
|
|
|
if (null != rest) {
|
|
|
|
|
System.out.println(rest);
|
|
|
|
|
JSONObject jsondata = JSONObject.fromObject(rest);
|
|
|
|
|
FolderNode fo = (FolderNode) JSONObject.toBean((JSONObject) jsondata, FolderNode.class);
|
|
|
|
|
System.err.println(fo);
|
|
|
|
|
try {
|
|
|
|
|
System.err.println(Bean2MapUtils.convertBean(fo));
|
|
|
|
|
} catch (IllegalAccessException | InvocationTargetException
|
|
|
|
|
| IntrospectionException e) {
|
|
|
|
|
// TODO Auto-generated catch block
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Date r = new Date();
|
|
|
|
|
System.err.println(r.getTime() - d.getTime());
|
|
|
|
|
}
|
|
|
|
|
// public static void main(String[] args) {
|
|
|
|
|
// Date d = new Date();
|
|
|
|
|
// HttpUtils ht = new HttpUtils();
|
|
|
|
|
// BaseForm1 bas = new BaseForm1();
|
|
|
|
|
// bas.setId("12");
|
|
|
|
|
// bas.setName("n12");
|
|
|
|
|
// String rest = ht.sendPost("gfs/getAllvolume", null);
|
|
|
|
|
// if (null != rest) {
|
|
|
|
|
// System.out.println(rest);
|
|
|
|
|
// JSONArray jsondata = JSONArray.fromObject(rest);
|
|
|
|
|
// ArrayList<VolumeEntity> fo = (ArrayList<VolumeEntity>) JSONArray.toCollection(jsondata, VolumeEntity.class);
|
|
|
|
|
// System.err.println(fo);
|
|
|
|
|
// try {
|
|
|
|
|
// System.err.println(Bean2MapUtils.convertBean(fo));
|
|
|
|
|
// } catch (IllegalAccessException | InvocationTargetException
|
|
|
|
|
// | IntrospectionException e) {
|
|
|
|
|
// // TODO Auto-generated catch block
|
|
|
|
|
// e.printStackTrace();
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
//
|
|
|
|
|
// Date r = new Date();
|
|
|
|
|
// System.err.println(r.getTime() - d.getTime());
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|