我正在尝试从网站中提取一些文本进行排序。
使用这样的函数:
Private Function GetContent(ByRef strUrlAddress as String) as String
Dim ResultString as String = New System.Net.WebClient().DownloadString(strUrlAddress)
Return ResultString
End Function
从某些网站检索文本很好。但是其他站点正在返回压缩数据,并且字符串最终包含数据块。如何检索解压缩的页面,或在检索到的数据时解压缩数据?