首先是获取微信URL中的信息类(给一个接口URL,返回接口中的信息字符串)
//获取网络URL接口信息工具类
public static String getURL(String URL) throws Exception{
String result = "";
String urlNameString=URL;
URL realUrl = new URL(urlNameString);
URLConnection connection = realUrl.openConnection();
HttpURLConnection httpURLConnection = null;
if(connection instanceof HttpURLConnection){//能转化
httpURLConnection = (HttpURLConnection)connection;//强转
}
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream(),"UTF-8"));//获取返回json 字符串流
String currentLineStr;
while((currentLineStr = bufferedReader.readLine()) != null){//读取行
result+=currentLineStr;
}
return result;
}
2!获取的信息是被Base64,AES加密的,要解密出来,解密类
/**
* AES解密
*
* @param data
* //密文,被加密的数据
* @param key
* //秘钥
* @param iv
* //偏移量
* @param encodingFormat
* //解密后的结果需要进行的编码
* @return
* @throws Exception
*/
在解密是一定注意架包引的是否正确,参数是否接收正确。(之前犯了一个错误:java postman测试时,后台接收到的参数将加密数据字符串中的“+”号都变成了空格。这使得参数不正确了,但是在不测试的时候参数是正常的,“有些不明所以”)
public static String decrypt(String data, String key, String iv) throws Exception {}
3!拿到微信用户信息后,做本程序的用户持久化