Advertisement
Advertisement
| 06.03.2008 at 10:50PM PDT, ID: 23455674 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: |
import java.io.BufferedReader;
public class Test {
public static void main(String[] args) throws Exception {
URI uri = new URI("http://jn.sapo.pt/paginainicial/ultimas/default.aspx");
BufferedReader reader = new BufferedReader(new InputStreamReader(uri.toURL().openStream(), "UTF8"));
String str;
while ((str = reader.readLine()) != null) {
System.out.println(str);
}
}
}
|