本博客所有内容是原创,未经书面许可,严禁任何形式的转
http://blog.csdn.net/u010255642
python中文乱码解决
首先来看Python (command line)环境
先生成unicode字符
>>> ss=u"武器"
>>> ssu'\u6b66\u5668'
>>> sss=u'武器'
>>> sss
u'\u6b66\u5668'
>>>
然后是普通字符
>>> s="武器"
>>> s
'\xce\xe4\xc6\xf7'
>>>
出现了中文乱码
我们通过print语句可以将它们输出,但问题仍没有解决
>>> print s
武器
>>> print ss
武器
>>> print sss
武器
判断字符串的类型是否为unicode类型
>>> isinstance( s, str )
True
>>> isinstance( s, unicode)
False
>>>
decode的作用是将其他编码的字符串转换成unicode编码,如str1.decode('gb2312'),表示将gb2312编码的字符串str1转换成unicode编码。
encode的作用是将unicode编码转换成其他编码的字符串,如str2.encode('gb2312'),表示将unicode编码的字符串str2转换成gb2312编码。
我们先处理非unicode字符,解码为utf-16格式,也可以解码成gbk格式
>>> x=s.decode('gbk')
>>> x
u'\u6b66\u5668'
>>> s
'\xce\xe4\xc6\xf7'
>>> s.decode("utf-16")
u'\ue4ce\uf7c6'
>>>
>>> print x
武器
此外可以使用形如下面的unicode函数来转换
unicode(s, "gbk")
>>> x
u'\u6b66\u5668'
>>> print x
武器
在ubuntu上安装PostgreSQL
sudo apt-get install -y postgresql-9.1postgresql-client-9.1 postgresql-contrib-9.1postgresql-server-dev-9.1
PostgreSQL登录(使用psql客户端登录)
使用postgres 用户登录的意思
sudo -u postgres psql
PostgreSQL数据默认会创建一个postgres的数据库用户作为数据库的管理员,密码是随机的,所以这里设定为'postgres'
修改PostgreSQL登录密码:
postgres=# ALTER USERpostgres WITH PASSWORD 'postgres';
//postgres=#为PostgreSQL下的命令提示符
4.退出PostgreSQLpsql客户端
postgres=# \q
修改linux系统的postgres用户的密码(密码与数据库用户postgres的密码相同)
sudo passwd -d postgres
PostgreSQL数据默认会创建一个linux用户postgres,修改密码
在数据库服务器上用postgres帐号通过psql或者pgAdmin等等客户端操作数据库了。
/etc/init.d/postgresql restart
文件系统级别备份(冷备份)
文件系统级别的备份是冷备份,需要停止数据库。
1 ,停止数据库
pg_ctl –D /usr/local/pgsql/data stop
2 ,备份数据库