/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package dateidownload;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import javax.swing.JOptionPane;
/**
*
* @author manuel
*/
public class Main {
public static ByteArrayOutputStream result;
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
try {
// Verbindung aufbauen
URL url = new URL("http://www.kotb.de/test.txt");
URLConnection connection = url.openConnection();
// Daten einlesen
result = new ByteArrayOutputStream();
InputStream input = connection.getInputStream();
byte[] buffer = new byte[1000];
int amount = 0;
// Inhalt lesen
while(amount != -1){
result.write(buffer, 0, amount);
amount = input.read(buffer);
}
}catch(Exception e){
// Fehlermeldung
JOptionPane.showMessageDialog(null,"Es konnte keine Verbindung mit dem Internet hergestellt werden. Ist ein Proxy nötig?","Verbindungsproblem",JOptionPane.ERROR_MESSAGE);
}
System.out.println(result.toString());
}
}