我正在尝试从http://download.finance.yahoo.com/d/quotes.csv?s=msft&f=sl1p2获取一个csv文件然后解析它以便我可以将价格和价格变成一个对象设置两个属性.有没有办法可以用android库做到这一点?
编辑:这是联合的当前状态(不工作):
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpGet httpGet = new HttpGet(uri);
HttpResponse response = httpClient.execute(httpGet, localContext);
String result = "";
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String line = null;
while ((line = reader.readLine()) != null){
result += line + "\n";
String[] RowData = result.split("\n");
String name = RowData[0];
String price = RowData[1];
String change = RowData[2];
stock.setPrice(Double.parseDouble(price));
stock.setTicker(name);
stock.setChange(change);
}
Run Code Online (Sandbox Code Playgroud)