using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Net;
namespace ConsoleApplication1
{
class Program
{
staticvoid Main(string[] args)
{
string jpgFileName = @"C:\tmp\test2.jpg";
WebClient client = new WebClient();
byte[] data = client.DownloadData("http://hogehogehogehoge/hogefuga.jpg");
File.WriteAllBytes(jpgFileName, data);
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Net;
namespace ConsoleApplication1
{
class Program
{
staticvoid Main(string[] args)
{
string outputHtml = @"C:\tmp\yahoo.html";
StreamWriter writer = new StreamWriter(outputHtml);
WebClient client = new WebClient();
string str = client.DownloadString("http://yahoo.com");
writer.Write(str);
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;