Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XML 文件是:
<name></name>
如果我用以下方式解析 XML:
String result = null; if (parser.next() == XmlPullParser.TEXT) { result = parser.getText(); parser.nextTag(); } return result;
它返回 null 还是返回空字符串""?
""
来自Android 开发者 XmlPullParser 参考
如果元素内容为空(内容为“”),则不会报告 TEXT 事件。
所以它应该返回null。