0

我正在解析来自另一台服务器的 rss 提要并在中继器中显示。但是有错误:给定编码中的字符无效。代码如下:

Protected Sub Page_Load(sender As Object, e As System.EventArgs) Handles Me.Load
        'Create a WebRequest
        Dim rssReq As WebRequest = WebRequest.Create("http://www.freelancer.com/rss/affiliatejob_mamboking_NET.xml")
        'Create a Proxy
        Dim px As New WebProxy("http://www.freelancer.com/rss/affiliatejob_mamboking_NET.xml", True)
        'Assign the proxy to the WebRequest
        rssReq.Proxy = px
        'Set the timeout in Seconds for the WebRequest
        rssReq.Timeout = 5000
        Try
            'Get the WebResponse
            Dim rep As WebResponse = rssReq.GetResponse()
            'Read the Response in a XMLTextReader
            Dim xtr As New XmlTextReader(rep.GetResponseStream())
            'Create a new DataSet
            Dim ds As New DataSet()
            'Read the Response into the DataSet
            ds.ReadXml(xtr)
            'Bind the Results to the Repeater
            rssFreelance.DataSource = ds.Tables(0)
            rssFreelance.DataBind()
        Catch ex As Exception
            Throw ex
        End Try
    End Sub

当我看到 xml 的源代码时,它显示的是 utf-8 编码。

<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="http://www.freelancer.com/content/rss.xsl" ?><rss version="2.0" xmlns:coop="http://www.google.com/coop/namespace">
4

1 回答 1

0
Imports System.Web
WebUtility.HtmlDecode(response)

其中response是您要解码的实际文本、描述标题

于 2013-02-22T06:35:09.223 回答