百度地图SN生成方式

参照百度地图官方代码:

http://lbsyun.baidu.com/index.php?title=lbscloud/api/appendix

官方代码上:/geocoder/v2/?,不知道为什么?签名有个斜杠,要把斜杠去掉:

String wholeStr = new String("/place/v2/search?" + paramsStr + "chFDheW5xRLNWv0z9TCTgFSIWjCHzQ4n");

// 对上面wholeStr再作utf8编码
String tempStr = URLEncoder.encode(wholeStr, "UTF-8");

// 调用下面的MD5方法得到最后的sn签名7de5a22212ffaa9e326444c75a58f9a0
String sn = snCal.MD5(tempStr);
String url = "http://api.map.baidu.com/place/v2/search?"+paramsStr+"&sn="+sn;
System.out.println(new String(readPage(url),"UTF-8"));


你可能感兴趣的:(百度地图SN生成方式)