cats #636(2007/07/12 10:28 GMT) [ C# ] Rating1/1=1.00
1 2 3 4 5 6 7 8 9 10 11 12 13 14
using System; using System.Net; using System.Text; class Program { static void Main() { string url = "http://ja.doukaku.org/feeds/comments/"; WebClient wc = new WebClient(); byte[] bb = wc.DownloadData(url); string s = Encoding.UTF8.GetString(bb); Console.WriteLine(s); } }
Rating1/1=1.00-0+
1 reply [ reply ]
cats #636() [ C# ] Rating1/1=1.00
Rating1/1=1.00-0+
1 reply [ reply ]