1

连接到套接字并使用 .read() 捕获响应后,如何解析输入流和读取行?

我看到返回的数据没有任何 CRLF

<html><head><title>Apache Tomcat/6.0.16 - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 404 - /index.html</h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u>/index.html</u></p><p><b>description</b> <u>The requested resource (/index.html) is not available.</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.22</h3></body></html>
4

2 回答 2

3

您必须解析 HTML。Python 有几种解析 HTML 的方法——其中一种是内置的HTMLParser模块。另一种可能更好的方法是第 3 方BeautifulSoup模块。

这篇不错的文章解释了处理 HTML 处理的许多其他问题。您还可以阅读(免费在线)深入 Python 书的相关章节。

于 2010-02-02T04:58:33.277 回答
0

使用 HTML 解析器。 Beautiful Soup似乎很受欢迎。

于 2010-02-02T04:16:26.783 回答