我只想下载一个网站并将其内容放入String.
String
与在C#中完成的方式类似:
WebClient c = new WebClient(); string ex = c.DownloadString("http://url.com");
rust
rust ×1