我必须从数据库中检索值并将其添加到数组列表中。这是我的代码..
ArrayList country = new ArrayList();
strQuery = "Select * from country";
rs = conexiondb.Consulta(strQuery);
while (rs.next()) {
String toc = rs.getString("country");
country.add(toc);
}
out.print(country);
System.out.println(country);
out.close();
我已将从数据库中检索到的所有值添加到国家/地区。这是该国家/地区中存在的值。
[亚太、北美、南美、欧洲]
现在根据我的需要,我必须在每个逗号值之后删除空格并使其像这样..
[亚太地区、北美、南美、欧洲]
请大家帮我解决这个问题..
提前致谢。