QProcess is a correct way ..
can u show us how u implement the QProcessI've tried QProecess, readyReadStandardError etc. But I couldn't get the result
QProcess is a correct way ..
can u show us how u implement the QProcessI've tried QProecess, readyReadStandardError etc. But I couldn't get the result
"Behind every great fortune lies a crime" - Balzac
Also I tried the readyReadStandartOutput signal. But I couldn't get the Wget's output.QProcess process;
process.setProcessChannelMode(QProcess::MergedChan nels);
process.execute("wget http://27.media.tumblr.com/tumblr_l0d8uj2Ou41qbut2yo1_400.jpg");
process.waitForFinished();
QString str = process.readAll();
Bookmarks