1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

lolipopでpythonの日本語を表示する方法

Last updated at Posted at 2015-02-08

LolipopでPythonのCGIを動かすと
どうやら普通にprint文で日本語を記述してもエラーになって表示できない。

#原因
標準出力がパイプ扱いになってエンコードの指定が無視されてらしい

wk.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys, locale, codecs

print "Content-Type: text/html\n\n"
print 'sys.stdin.encoding:      %s\n\n' % sys.stdin.encoding
print 'sys.stdout.encoding:     %s\n\n' % sys.stdout.encoding
print '%s\n\n' % sys.getfilesystemencoding()
print '%s\n\n' % sys.getdefaultencoding()
print '%s\n\n' % sys.stdin.encoding
print '%s\n\n' % sys.stdout.encoding
print '%s\n\n' % sys.stderr.encoding

を実行すると、下記の結果になる。

sys.stdin.encoding: None
sys.stdout.encoding: None
ANSI_X3.4-1968
ascii
None
None
None

#解決策
強制的にエンコードを使って、print文の出力先の変更する。

#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys, locale, codecs
print "Content-Type: text/html\n\n"

wk = u"日本語を表示"

Writer = codecs.getwriter('utf-8')
stdout = Writer(sys.stdout)
print >>stdout, u"%s" % (wk) 

結果として下記の行が表示される。

日本語を表示
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?