gpt4 book ai didi

java - 将字符串解析为列表时出错

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:31:54 24 4
gpt4 key购买 nike

我已经设法从数据库中获取了一个字符串,并且能够将其中的一些元素存储在变量中,以减少应用程序与数据库交互的次数。但是,我希望从数据库中获取第一个元素并将其存储在列表中,但是当我将字符串解析为新列表时它会不断生成错误。请帮忙

//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);

最佳答案

列表是一个接口(interface),行程>

   listmboya=new ArrayList();
listmboya.add(loc);

关于java - 将字符串解析为列表时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12927806/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com