I am thinking about writing a QT application that will:
1. download a html page (store the source in a QString)
2. parse the QString with the HTML and create a QLIST with urls (links)
3. download each and every link found in parallel in a seperate threads.
I looked at QNetworkAccessManager and QWebView for doing this. But think both seem a bit overkill.
Do i need write the asyncron, i mean can not I not just start the download in a seperate thread, when done send the result back to the main thread?
-will this cause the main gui thread to lock up?
what would be the most simplest way of doing this?




Reply With Quote
Bookmarks