Android:无法导入 org.apache.harmony.xml.ExpatReader

发布于 2024-09-07 15:17:10 字数 496 浏览 4 评论 0原文

我需要解析 UTF-8 编码的输入流,所以我认为最合适的方法是使用

    XMLReader reader = new ExpatReader();
    InputSource source = new InputSource(in);
    source.setEncoding(encoding.expatName);
    reader.parse(source);

For that I need to import org.apache.harmony.xml.ExpatReader 但我不知道如何,我的意思是我必须从 http://harmony.apache.org/download.cgi< 安装哪个 Java 包/a>?

或者是否有其他方法可以实现相同的目标?

谢谢你的帮助。

I need to parse an UTF-8 encoded input stream, so I think the most appropriate method is to use

    XMLReader reader = new ExpatReader();
    InputSource source = new InputSource(in);
    source.setEncoding(encoding.expatName);
    reader.parse(source);

For that I need to import org.apache.harmony.xml.ExpatReader but I cannot figure out how, I mean which Java package must I install from http://harmony.apache.org/download.cgi?

Or is there an alternative method to accomplish the same goal?

Thank you for helping.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本宫微胖 2024-09-14 15:17:10

您不直接实例化外籍读者。只需使用 XMLReaderFactory 即可。

you don't instantiate an expat reader directly. just use the XMLReaderFactory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文