我想向包含.csv文件的页面发出请求,将其取回并解析它。我一直在搜索很多,我发现了很多关于访问安全连接和问题的问题,但我认为我的问题不同了。以下是我的代码:
protected String doInBackground(Void... params) {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet("https://recursos-data.buenosaires.gob.ar/bicicletas-publicas/estaciones-bicis.csv");
String text = null;
try {
HttpResponse response = httpClient.execute(httpGet, localContext);
Log.v("response code", response.getStatusLine()
.getStatusCode() + "");
HttpEntity entity = response.getEntity();
当我调试它并到达HttpResponse响应= httpClient行时...程序不会抛出任何异常,但它也不会继续。它只是挂在那里。我不知道问题是什么。我之前使用过此代码。
我使用的是Android 2.2。有任何想法吗?