晚上好,
我想从输入流中获取一些文本,我从响应中检索:
InputStream inputStreamActivity = response.getEntity().getContent();
XML非常混乱,看起来像这样:
<div class="kpn-box width-272 boxwidth_onehalf height-154 boxheight_small gradientfromtop-grey noSideBorders">
<h2>Mijn beltegoed</h2>
<p class="contenttext"><div class="contentbox"><p>
Beltegoed: € 1,00<br/>
Verbruik deze maand: € 0,50<br/>
</p>
</div>
<div class="floatRight bottomlink-right"><a href="javascript:void('0');" id="panel3" class="decorated-right kpn-bh-panel panel3" title="details" xml:lang="nl">details</a>
</div>
<div class="richpanel panel3" style="display:none;"><h2>Mijn beltegoed</h2>
<table cellpadding="0" cellspacing="0" class="personaltable"><tbody><tr class="alternativerow">
<td>Nieuw beltegoed:</td><td>€ 2,00</td></tr><tr class=""><td>Tegoed vorige periode:
<td>€ 1,0</td>
</td>
</tr>
<tr class="alternativerow">
<td>Tegoed tot 09-11-2011:
<td>€5,00</td></td>
</tr>
<tr class=""><td/><td height="25px"/></tr>
<tr class="alternativerow">
<td>Verbruik sinds nieuw tegoed:</td>
<td>€ 0,49</td
最好的方法是什么? 我在DocumentBuilder中看到了一些例子,但我不知道如何实现它。
一些示例代码会很好。
提前感谢您的帮助。
结果应该看起来像这样,我想把它放在标签上。
Beltegoed:€1,00
Verbruik deze maand:€0,50
Tegoed vorige periode:€1,0
Tegoed tot 09-11-2011:€5,00
Verbruik sinds nieuw tegoed:€0,49
编辑: 我决定使用SAXParser,因为它似乎是移动设备的最佳选择。 有人可以帮我一些示例代码吗? 感谢..
我已经有了这段代码:
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser sp = factory.newSAXParser();
XMLReader xr = sp.getXMLReader();
xr.parse(new InputSource(response.getEntity().getContent()));
response.getEntity().consumeContent();
答案 0 :(得分:1)
我建议你在Android中使用一个xml解析器。这是Android上主要解析器http://www.ibm.com/developerworks/opensource/library/x-android/的一个很好的示例/教程
答案 1 :(得分:0)
只需从该HTML源解析您需要的数据/内容。
您可以关注我的文章系列Android XML Adventure
- http://xjaphx.wordpress.com/2011/10/09/android-xml-adventure-what-is-the-thing-called-xml/