Hi,
I'm still new with qt.
Got a problem to convert this java parameter into qt
String out;
return (new String(new BigInteger(out, 16).toByteArray()));
How to do this in qt ?
thank you
Printable View
Hi,
I'm still new with qt.
Got a problem to convert this java parameter into qt
String out;
return (new String(new BigInteger(out, 16).toByteArray()));
How to do this in qt ?
thank you
Have a look at QString::number().
Thank you.
I've finally found the solution.
QByteArray text = QByteArray::fromHex(out.toAscii());