我有一个List<NameValuePair>
对象,我在其中放置随机数据:
nameValuePairs.add(new BasicNameValuePair("key","value"));
我需要将这些数据存储到SQLite数据库中,因此我将对象转换为字符串:
nameValuePairs.toString();
当然,我需要再次获取数据,但我不知道是否有可能。有没有一种简单的方法可以从字符串中取回NameValuePair
对象?
非常感谢!
答案 0 :(得分:0)
使用循环并迭代数据,然后将其存储在SQLite中
for (NameValuePair nvp : data)
{
String name = nvp.getName();
String value = nvp.getValue();
}