我的Java列表看起來象下面這樣:如何從ArrayList中獲得價值
ArrayList<String> al = new ArrayList<String>();
City: Berlin, Document guid: 08c14773-db81-4c43-8b66-51e5d39a4b2d, Content: null
City: Amsterdam, Document guid: 28c14773-db81-4c43-8b66-51e5d39a4b2d, Content: null
City: Tokio, Document guid: 18c14773-db81-4c43-8b66-51e5d39a4b2d, Content: null
我需要從內容中獲得價值。下面的代碼顯示所有的值,但我怎麼能從獲得字符串內容?
for (int i=0;i < al.size();i++){
Log.i("Value of element "+i, String.valueOf(al.get(i)));
}
請問您可以重新制定信息......什麼是**「城市:柏林,文檔指南:08c14773-db81-4c43-8b66-51e5d39a4b2d,內容:null」**,一個對象?,一個json? ...? –
這是一個對象 – user5523912
你的對象是怎樣的? – Flown