我有这行文字:
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数据库中自己的列中。
注意:每个1234
,03/10/2011 14:30
,2222
,3333
,4444
,5555
和www.example.com
将存储在单独的sqlite列中。
有什么建议吗?