0
A
回答
1
這是代碼。希望能幫助到你;
public class SnapToRoad extends AsyncTask<Void, Void, Void> {
private static final String TAG = SnapToRoad.class.getSimpleName();
@Override
protected Void doInBackground(Void... params) {
Reader rd = null;
try {
URL url = new URL("http://maps.google.com/maps/api/directions/xml?origin=52.0,0&destination=52.0,0&sensor=true");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setReadTimeout(10000 /* milliseconds */);
con.setConnectTimeout(15000 /* milliseconds */);
con.connect();
if (con.getResponseCode() == 200) {
rd = new InputStreamReader(con.getInputStream());
StringBuffer sb = new StringBuffer();
final char[] buf = new char[1024];
int read;
while ((read = rd.read(buf)) > 0) {
sb.append(buf, 0, read);
}
Log.v(TAG, sb.toString());
}
con.disconnect();
} catch (Exception e) {
Log.e("foo", "bar", e);
} finally {
if (rd != null) {
try {
rd.close();
} catch (IOException e) {
Log.e(TAG, "", e);
}
}
}
return null;
}
相關問題
- 1. GPS座標:1公里點周圍方形
- 2. jquery/JavaScript公式添加x米/英里/公里到latlng座標
- 3. 無效方法將英里數轉換爲公里/公里數千英里
- 4. 繪圖方塊1英里x 1英里
- 5. 使用javax.measure將平方米轉換爲平方公里
- 6. 如何使用地理座標測量公里寬度
- 7. 計算距離座標公里與Java
- 8. onclick方法,捕獲座標突出顯示出現matplotlib
- 9. 如何使用JavaScript計算/顯示相對時間(1小時前,1天前)
- 10. 在表單1之前顯示錶單
- 11. Python散景谷歌地圖陰謀 - 根據右下方的縮放顯示1公里距離
- 12. 使用池塘座標和池塘區域生成1公里的平均池塘面積
- 13. 轉到哪裏單詞突出顯示
- 14. 公里?
- 15. Openlayers幾何如何計算面積從平方度到平方公里?
- 16. 顯示前1最大列
- 17. 在哪裏放置前景()方法
- 18. 顯示與mapKit Swift用戶的距離(英里/公里)
- 19. 北方,上方,前方通常代表世界座標?
- 20. 如何在JavaScript中調用當前對象的公共方法?
- 21. SOLR方面通過前綴搜索結果突出顯示
- 22. 顯示大約100公里的針腳
- 23. 如何在PHP中的所有公共方法之前調用方法?
- 24. 2個座標間距離多少公里
- 25. 獲得兩個座標之間的距離公里
- 26. ng-click後突出顯示前一行
- 27. mongodb GEO2D指標 - 公里?
- 28. 突出顯示當前標籤頁?
- 29. 應用#1般突出顯示錶行
- 30. JQuery突出顯示當前菜單項
它幫助男人謝謝:) – 2014-09-26 12:59:30