我遇到了 PySide 的问题。我正在处理一些图像,使用QtCore.QImage
并注意到路径名中包含 unicode 字符的图像文件没有被打开。
所以我开始调查并发现它QFile
提出了同样的问题。
我试过给它一个'utf8'编码的字节串和一个解码的unicode字符串,同样的区别。
我也尝试使用这些QFile.encodeName
和QFile.decodeName
函数,但所做的只是从文件名中删除非 ascii 字符。
我制作了这个脚本来演示:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from PySide.QtCore import QFile, QIODevice
try:
os.makedirs(u'/tmp/qttest')
except:
pass #probably dir just exists
os.chdir(u'/tmp/qttest')
def make_file(fn):
f = open(fn, 'w')
f.close()
def check_file(fn):
f = QFile(fn)
f.open(QIODevice.ReadOnly)
return f.isReadable()
fna = u'somefile.txt'
fnu = u'einhverskrá.txt'
make_file(fna)
make_file(fnu)
print fna+u' was opened successfully: ', check_file(fna)
print fnu+u' was opened successfully: ', check_file(fnu)
print fna+u' exists: ', os.path.exists(fna)
print fnu+u' exists: ', os.path.exists(fnu)
输出
somefile.txt was opened successfully: True
einhverskrá.txt was opened successfully: False
somefile.txt exists: True
einhverskrá.txt exists: True
有人可以解释一下吗?
更新
查看源代码后,我发现QFile.open()
在unix上总是通过这个函数传递文件名:
static QString locale_decode(const QByteArray &f)
{
#if defined(Q_OS_DARWIN)
// Mac always gives us UTF-8 and decomposed, we want that composed...
return QString::fromUtf8(f).normalized(QString::NormalizationForm_C);
#elif defined(Q_OS_SYMBIAN)
return QString::fromUtf8(f);
#else
return QString::fromLocal8Bit(f);
#endif
}
这总是会导致从字符串中删除 unicode 字符。