| Trolltech Home | Qt-interest Home | Recent Threads | All Threads | Author | Date | |
| All threads index page 1 | |
ååä wrote: > hi, all > is it possible to convert QByteArray to QString type? if possible, how? > regards > fengli if QString str(QByteArray ba) doesn't work try; QByteArray baData; QTextStream in(&baData, QIODevice::ReadOnly); QString str = in.readAll(); -- [ signature omitted ]