android httpget从一个网站读到sqlite列

时间:2011-03-09 15:24:10

标签: android sqlite

我有这行文字:

id:1234 dateandtime: 03/10/2011 14:30 firstnumber:2222 secondnumber:3333 centernumber: 4444
refrancenumber:5555 webaddress: www.example.com

我正在使用此代码从我的网站上读取它用于测试

//Encode and set entity
postMethod.setEntity(new UrlEncodedFormEntity(nameValuePairs, HTTP.UTF_8));
//Execute and get the response - remove all html tag
addressString = hc.execute(postMethod, res).replaceAll("<(.|\n)*?>","");

我的问题是,这段代码将其作为一个段落读取,我想将它们分开,以便我可以将它们中的每一个插入到sqlite数据库中自己的列中。

注意:每个123403/10/2011 14:302222333344445555www.example.com将存储在单独的sqlite列中。

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

我建议您阅读String.split(String regularExpression)函数:documentation