我設法從數據庫中獲取一個字符串,並能夠將其中的一些元素存儲在變量中,以減少應用程序與數據庫交互的次數。不過,我想要從數據庫中提取第一個元素以存儲在列表中,但是當我將字符串解析爲新列表時,它會一直生成錯誤。請幫助錯誤解析一個字符串到列表
//String fetched from the database
final String[] rec = split(myresult,seperator);
//loc is the first String to be parsed to a String..
//desc is the 2nd string to be parsed to a textarea
//coords 3rd string which contains coordinates..
String loc=rec[0];
final String desc=rec[1];
String coords=rec[2];
//ERROR IS GENERATED HERE!!!
listmboya=new List(loc);
//Separate the coordinates in the string...
String seperator2=",";
String [] coordinates=split(coords,seperator2);
String lat=coordinates[0];
String lot=coordinates[1];
//convert them to floats..
item1=Float.parseFloat(lat);
item2=Float.parseFloat(lot);
'loc'是一個'String'。我不認爲有一個'ArrayList'構造函數接收'String'作爲參數。 –
亞這是一些複製/粘貼錯誤,修復它,謝謝 – banjara
它也不工作;( – 1088