日期:2014-05-16 浏览次数:20576 次
package com.test.moltest;
import net.sf.json.JSONObject;
import com.huonet.util.DESTools;
import com.huonet.util.UserJsonUtil;
public class MobileRecharg {
public static void main(String[] argv) throws Exception {
//调用充值接口
String application_value = "recharge";
String account = "payease";
String mobile = "13581570818";
String orderid = "201305133127";
String amount = "100";
JSONObject jobj = new JSONObject();
jobj.accumulate("application_value", application_value);
jobj.accumulate("account", account);
jobj.accumulate("mobile", mobile);
jobj.accumulate("amount", amount);
jobj.accumulate("orderid", orderid);
String s = java.net.URLEncoder.encode(UserJsonUtil.encryptJsonUser(jobj));
String res= "http://www1.beijing.com.cn/user/api/mobile_test.jsp?s="+s;
System.out.println( "res=="+res);
//调用结束
//处理返回结果
//res = "CLp5Zjwtq9waj0Q6QNj6TArNHqMOwuJV/FRlHdmk4UFxExX0bEeH+pbi9guWDjTju/XchsQrIfJleZvQGw8Efb4JxzOosnXTstG00gxVzROVinl6o30HUA==";
System.out.println(UserJsonUtil.decryptJsonUser1(res.trim()));
s = DESTools.decrypt("testtest", s);//解密1
jobj = JSONObject.fromObject(s);
System.out.println(jobj);
}
}