大树 2012-12-21
不能用wifi,用3g
3G好像有时也不行。。。郁闷了。。。
不行
http://muzilihao.iteye.com/blog/1459137
[url]publicstaticGeoPointgetLatLong(JSONObjectjsonObject){
Doublelon=newDouble(0);
Doublelat=newDouble(0);
try{
lon=((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lng");
lat=((JSONArray)jsonObject.get("results")).getJSONObject(0)
.getJSONObject("geometry").getJSONObject("location")
.getDouble("lat");
}catch(Exceptione){
e.printStackTrace();
}
returnnewGeoPoint((int)(lat*1E6),(int)(lon*1E6));
}
[/url]
大家好,先说明下,我是个android业余开发人员。最近结合微信还有移动云存储做了个小应用。一切都基本OK了,最后发现一种情况,对于中国移动3G手机,在使用3g网时,无法请求到云存储stackmob。