Hi, habs jetzt geschafft auf Datien im Internet zuzugreifen.
Wie aber kann ich auf das LAN zugreifen. IP-adresse ds Zielrechners ist bekannt.
Möchte zum Beispiel eine Datei auf laufwerk C: auslesen.
Hier mein Code zum Internetzugriff.
Was muss ich daran verändern um aufs LAN zuzugreifen?
Danke im Voraus.
Wie aber kann ich auf das LAN zugreifen. IP-adresse ds Zielrechners ist bekannt.
Möchte zum Beispiel eine Datei auf laufwerk C: auslesen.
Hier mein Code zum Internetzugriff.
Was muss ich daran verändern um aufs LAN zuzugreifen?
Code:
public static void main(String[] args) {
Properties prop = new Properties(System.getProperties());
prop.put("http.proxySet", "true");
prop.put("http.proxyHost", "138.33.1.81");
prop.put("http.proxyPort", "8080");
prop.put("https.proxyHost", "138.33.1.81");
prop.put("https.proxyPort", "8080");
Properties newprops = new Properties(prop);
System.setProperties(newprops);
String path = "http://www.haba.de";
URL url;
try {
url = new URL(path);
HttpURLConnection httpURLConnection = (HttpURLConnection) url
.openConnection();
InputStream inputStream = httpURLConnection.getInputStream();
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
int len = 0;
byte[] BUFFER = new byte[4096];
while ((len = inputStream.read(BUFFER)) != -1) {
outputStream.write(BUFFER, 0, len);
}
inputStream.close();
outputStream.close();
System.out.println(outputStream);
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
Danke im Voraus.