これが私のプログラムです。このプログラムでは、Webサイト(例:http ://www.adobe.com/products/muse.html )
にリクエストを送信します。プレーンテキストボックスで返されるhtmlコードを表示します。
QUrl url("http://www.adobe.com/products/muse.html")
「thisfile」にHTMLコードを入れたい
file.setFileName("thisfile.html");
if (!file.open(QIODevice::WriteOnly))
{
std::cerr << "Error: Cannot write file "
<< qPrintable(file.fileName()) << ": "
<< qPrintable(file.errorString()) << std::endl
return false;
}
http.setHost(url.host(),80);
http.post(url.toString(),"term=yyyy&loc=en_us&siteSection=products%3Amuse",&file);
このコードは正しく機能しません。ファイルを表示すると、誤ったhtmlコードが表示されます。私は何をしなければなりませんか?