Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1414464
  • 博文数量: 264
  • 博客积分: 5810
  • 博客等级: 大校
  • 技术积分: 3528
  • 用 户 组: 普通用户
  • 注册时间: 2011-03-13 17:15
文章分类

全部博文(264)

文章存档

2011年(264)

分类: Python/Ruby

2011-07-12 16:11:31

import urllib2
import sys
content = urllib2.urlopen("").read()   #网站页面是utf-8编码的。

type = sys.getfilesystemencoding()   # 关键
print content.decode("UTF-8").encode(type)  # 关键

阅读(908) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~