gpt4 book ai didi

java - 在 BlackBerry 上解析 XML 字符串

转载 作者:行者123 更新时间:2023-11-30 07:36:04 25 4
gpt4 key购买 nike

我正在尝试使用以下代码解析 XML,但 StringReader 在 BlackBerry JDE 中不可用。执行此操作的正确方法是什么?

            DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
InputSource is = new InputSource();
is.setCharacterStream(new StringReader(xmlRecords));
Document doc = db.parse(is);

最佳答案

String xmlString = "<xml> </xml>" // your xml string    

ByteArrayInputStream bis = new ByteArrayInputStream(xmlString.getBytes("UTF-8"));

Document doc = builder.parse(bis);

试试这个

关于java - 在 BlackBerry 上解析 XML 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4012607/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com