13 lines
312 B
Plaintext
13 lines
312 B
Plaintext
int pageCount(0);
|
|
String siteName="www.developer.com";
|
|
String getName="http://www.developer.com/reference/foo.htm";
|
|
String saveName="c:\file.txt";
|
|
|
|
http.connect(siteName);
|
|
http.get(getName,saveName);
|
|
http.disconnect();
|
|
ftp.open("www.li.net","europa","cygnus-x1");
|
|
ftp.binary();
|
|
ftp.cd("www");
|
|
ftp.put(saveName);
|