How can i evit when i use this code:
Qt Code:
QByteArray buffer; QByteArray newBuffer; buffer = file.readAll(); file.close(); out << buffer; temp.close(); newBuffer = temp.readAll(); fileOut.write(newBuffer); fileOut.close();To copy to clipboard, switch view to plain text mode
that some characters of the original QByteArray when i use QTextStream are replace with "?"
Look, Like This
?it?? = with QTextStream
˜it€€ = without passing to QTextSteam
How can i evit this replacing of unkwown charcaters
Bookmarks