나는 다음과 같은 코드를 사용하여 RSS를 읽고 있어요와 XML을로드사용 Syndicationfeed는 인코딩 된 링크
012,368,092,837,994이 경우å
%C3%A5
로 인코딩)
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<atom:link rel="self" type="application/rss+xml" href="http://example.com/rss" />
<title>My RSS</title>
<description>My RSS</description>
<pubDate>Mon, 04 Jul 2016 08:19:50 +0200</pubDate>
<generator>RSS Generator 1.1</generator>
<link>http://example.com/rss</link>
<item>
<title>A title</title>
<description>A description</description>
<link>http://bl%C3%A5ljus.se</link>
</item>
</channel>
</rss>
예외는 다음과 같다
SyndicationFeed
에 구문 분석 오류를 무시하도록 XML을로드 할 때 설정할 수있는 설정이 있습니까? 아니면 다른 해결책?
xml은 정상이며 XmlReader는 정상입니다. 문제점은 문제의 근본 원인 인 SyndicationFeed 코드에 있다고 생각합니다. – jdweng