 |
Article:
 |
 |
Web Swinging
|
| Subject: |
Easy Screen grapping |
| Date: |
2006-10-13 02:22:32 |
| From: |
gruenewa |
|
|

|
I use java.util.Scanner to harvest the content of a webpage. For instance:
InputStream in = url.openStream();
String data = new java.util.Scanner(in).useDelimiter("\\Z").next();
in.close();
|
|