Hallo, ich habe folgendes Problem ich baue zu einen Webserver ein connection auf : ----- connection class---------- .... public BufferedReader getConnection(String request) throws IOException { return new BufferedReader(new InputStreamReader(new URL("http://"1.1.1.1"+request).openStream(),"ISO-8859-1")); } public ArrayList getVersion() throws IOException { ... BufferedReader input = getConnection("/control/info?version"); ... } public ArrayList getStatus() throws IOException { ... BufferedReader…