kybu
Mar 14 2004, 12:11 AM
Hi,
I would like to save japanese character in utf8 encoding to file on the japanese models of Zaurus, but I have no idea how to achieve this. I suppose that I need to convert QStrings data (input from user) to utf8, but how can I determine the encoding of that QString? Thanks.
torhans
Jan 9 2005, 12:37 AM
Hi
I'm successfully using the following, but there might be a better way.
#include <qtextstream.h>
#include <qstring.h>
...
FILE* writeFile;
QString strJapanese;
...
QTextStream outstream(writeFile,IO_WriteOnly);
outstream.setEncoding(QTextStream::UnicodeUTF8);
outstream << strJapanese << endl;
...
The encoding of the QString in handled internally and you need not to concern youself about it.
Regards
Torben