Hallo,
ich habe so etwas mal gebastelt. Das Bsp funktioniert und speichert den Inhalt in einer Textdatei:
public void downloadUrl(String u) throws IOException {
URL url = new URL(u);
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream("webseiteninhalt.txt"));
InputStream in = url.openConnection().getInputStream();
byte[] buffer = new byte[1024];
int read;
while ((read = in.read(buffer)) != -1) {
out.write(buffer, 0, read);
}
out.close();
}
Markus
--