Android Web 服务布尔检查
我是 Android 新手,正在努力确定流是否实时。我有一个预先存在的文件可以做到这一点(http://www.calvaryccm.com/ServiceTimes.asmx/ IsServiceTime)。这是当流处于非活动状态时返回的内容:
当流处于活动状态时,它返回以下内容:
< code>
有谁知道检查布尔值的简单方法吗?如果是的话请提供源代码。
I am new to Android and I am working on determining if a stream is live or not. I have a preexisiting file that does that (http://www.calvaryccm.com/ServiceTimes.asmx/IsServiceTime). This is what it returns when the stream is inactive:
<boolean xmlns="http://tempuri.org/">false</boolean>
When the stream is active it returns this:
<boolean xmlns="http://tempuri.org/">true</boolean>
Does anyone know of a simple way to just check the boolean values? If so will you please provide source code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个非常丑陋但非常简单的解决方案:
正确的解决方案会将结果解析为 XML 文件:
This is a reeeaaally ugly, but very simple solution:
A proper solution would would parse the result as XML file: