當前位置:成語大全網 - 漢語詞典 - 如何實現qt中qfile寫的文本在線設置為unicode編碼等。謝謝妳。。。

如何實現qt中qfile寫的文本在線設置為unicode編碼等。謝謝妳。。。

//主要使用QTextStream的setCodec()函數。

QFile文件(" in . txt ");

如果(!file . open(QIODevice::ReadOnly | QIODevice::Text))

返回;

QTextStream in(& amp;文件);

in . set codec(" unicode ");

而(!in.atEnd())

{

QString line = in . readline();

//進行相關處理。

}