<img src="http://www.dot.com/image.jpg"
Webページのソースコードを調べて、をに追加しようとしていHtmlElementCollection
ます。次に、foreachループを使用して要素コレクション内の各要素を循環させ、URLを介して画像をダウンロードしようとしています。
これが私がこれまでに持っているものです。今の私の問題は何もダウンロードされていないことです、そして私の要素がタグ名によって適切に追加されているとは思いません。もしそうなら、私はダウンロードのためにそれらを参照することができないようです。
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public void button1_Click(object sender, EventArgs e)
{
string url = urlTextBox.Text;
string sourceCode = WorkerClass.ScreenScrape(url);
StreamWriter sw = new StreamWriter("sourceScraped.html");
sw.Write(sourceCode);
}
private void button2_Click(object sender, EventArgs e)
{
string url = urlTextBox.Text;
WebBrowser browser = new WebBrowser();
browser.Navigate(url);
HtmlElementCollection collection;
List<HtmlElement> imgListString = new List<HtmlElement>();
if (browser != null)
{
if (browser.Document != null)
{
collection = browser.Document.GetElementsByTagName("img");
if (collection != null)
{
foreach (HtmlElement element in collection)
{
WebClient wClient = new WebClient();
string urlDownload = element.FirstChild.GetAttribute("src");
wClient.DownloadFile(urlDownload, urlDownload.Substring(urlDownload.LastIndexOf('/')));
}
}
}
}
}
}
}