摘要: If the world were a Village of 100 People 如果世界是个一百人的村落 David J.Smith/大卫.史密斯 Shelath Armstrory/谢拉.阿姆斯壮 If we could shrink the earth’s population to a village of precisely 100 people, with all the exsting human ratios remaining the same, it would look something like the following: 如果我们把全世界的人口按照现有压缩为一个100人的村子,情况就会如同以下: 阅读全文
posted @ 2007-09-04 22:28 陋室 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 我想得到一个网页的源代码 传进去一个 url地址 其中这个url带有参数 当我输入的参数是字母或数字时候 可以正确的获得url地址网页的源代码 我用过的方法如下: 方法1 private string getWebresourceFile1(string url) { WebClient myWebClient = new WebClient(); byte[] myDataBuffer = myWebClient.DownloadData(url); string SourceCode = Encoding.Default.GetString(myDataBuffer); saveSourceCode(SourceCode); return SourceCode; } 阅读全文
posted @ 2007-09-04 17:44 陋室 阅读(280) 评论(0) 推荐(0) 编辑