Android:使用 InputStream 打开位于 SD 中的文件时出现问题

发布于 2024-11-25 09:59:30 字数 1133 浏览 0 评论 0原文

我想用 XMLReader 解析位于 SD 中的 xml 文件

我有以下代码:

private RSSFeed getFeed(String urlToRssFeed)
{
    try
    {
        // setup the url
       URL url = new URL(urlToRssFeed);

       // create the factory
       SAXParserFactory factory = SAXParserFactory.newInstance();
       // create a parser
       SAXParser parser = factory.newSAXParser();

       // create the reader (scanner)
       XMLReader xmlreader = parser.getXMLReader();
       // instantiate our handler
       RSSHandler theRssHandler = new RSSHandler();
       // assign our handler
       xmlreader.setContentHandler(theRssHandler);
       // get our data through the url class
       InputSource is = new InputSource(url.openStream());
       // perform the synchronous parse           
       xmlreader.parse(is);
       // get the results - should be a fully populated RSSFeed instance, 
       // or null on error
       return theRssHandler.getFeed();
    }
    catch (Exception ee)
    {
        // if you have a problem, simply return null
        return null;
    }
}

但这适用于在线 xml 文件 为了打开存储在 SD 卡中的 xml 文件,必须进行哪些更改?

I want to parse an xml file located in the SD with an XMLReader

I have this code:

private RSSFeed getFeed(String urlToRssFeed)
{
    try
    {
        // setup the url
       URL url = new URL(urlToRssFeed);

       // create the factory
       SAXParserFactory factory = SAXParserFactory.newInstance();
       // create a parser
       SAXParser parser = factory.newSAXParser();

       // create the reader (scanner)
       XMLReader xmlreader = parser.getXMLReader();
       // instantiate our handler
       RSSHandler theRssHandler = new RSSHandler();
       // assign our handler
       xmlreader.setContentHandler(theRssHandler);
       // get our data through the url class
       InputSource is = new InputSource(url.openStream());
       // perform the synchronous parse           
       xmlreader.parse(is);
       // get the results - should be a fully populated RSSFeed instance, 
       // or null on error
       return theRssHandler.getFeed();
    }
    catch (Exception ee)
    {
        // if you have a problem, simply return null
        return null;
    }
}

but this works for on-line xml files
what changes must be done in order to open an xml file stored in the SD card?

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

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

发布评论

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

评论(1

风渺 2024-12-02 09:59:30

您是否已将其添加

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

到清单文件中?

Have you added the

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

to your manifest file?

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