在哪里可以找到C ++ / MFC的Feed库?

时间:2022-08-03 15:05:02

I am looking for a C++ feed library.

我正在寻找一个C ++ feed库。

Where can I find one?

我在哪里可以找到一个?

Edit:

I need to be able to access feeds from my MFC application. I would like to have a library that can deal with RSS, audio, video, and whatever else it can fit.

我需要能够从我的MFC应用程序访问提要。我想拥有一个可以处理RSS,音频,视频以及其他任何其他功能的库。

2 个解决方案

#1


See this. Basically, Windows RSS Platform will do.

看到这个。基本上,Windows RSS平台都可以。

#2


You could look at Feedreader-lib. However, it probably has too many dependencies for you.

你可以看看Feedreader-lib。但是,它可能对您有太多依赖关系。

If you want a list of feed libraries for c++, you could look at this question. These are the libraries mentioned in the answers there:

如果你想要一个c ++的feed库列表,你可以看一下这个问题。这些是答案中提到的库:

  • libxml, since RSS feeds are just XML
  • libxml,因为RSS提要只是XML

  • expat, same as above
  • 外籍人士,与上述相同

  • xerces
  • Flexible Parser on CodeProject, looks quite good
  • CodeProject上的灵活分析器,看起来相当不错

  • libmrss, hasn't been updated for about a year now
  • libmrss,现在还没有更新大约一年

Note that most of these do depend on an external library for downloading the feed, e.g. libcurl, and the ones that aren't dedicated XML parsers also depend on an external XML parser.

请注意,其中大多数都依赖于外部库来下载Feed,例如libcurl和非专用XML解析器也依赖于外部XML解析器。

#1


See this. Basically, Windows RSS Platform will do.

看到这个。基本上,Windows RSS平台都可以。

#2


You could look at Feedreader-lib. However, it probably has too many dependencies for you.

你可以看看Feedreader-lib。但是,它可能对您有太多依赖关系。

If you want a list of feed libraries for c++, you could look at this question. These are the libraries mentioned in the answers there:

如果你想要一个c ++的feed库列表,你可以看一下这个问题。这些是答案中提到的库:

  • libxml, since RSS feeds are just XML
  • libxml,因为RSS提要只是XML

  • expat, same as above
  • 外籍人士,与上述相同

  • xerces
  • Flexible Parser on CodeProject, looks quite good
  • CodeProject上的灵活分析器,看起来相当不错

  • libmrss, hasn't been updated for about a year now
  • libmrss,现在还没有更新大约一年

Note that most of these do depend on an external library for downloading the feed, e.g. libcurl, and the ones that aren't dedicated XML parsers also depend on an external XML parser.

请注意,其中大多数都依赖于外部库来下载Feed,例如libcurl和非专用XML解析器也依赖于外部XML解析器。