Hallo Leute,
ich hoffe ihr könnt mir helfen:
Ich soll eine Applikation schreiben, die eine Ausgabe auf der
DOS Konsole zeigen soll:
Protokoll: http
File: /MarkUp/
Host: www.w3.org
URL ext.Form: http://www.w3.org/MarkUp
Ich habe folgenden Code aus einem Applet,
doch ich weiß nicht wie ich das in eine Applikation umschreiben soll.
[
Danke
ich hoffe ihr könnt mir helfen:
Ich soll eine Applikation schreiben, die eine Ausgabe auf der
DOS Konsole zeigen soll:
Protokoll: http
File: /MarkUp/
Host: www.w3.org
URL ext.Form: http://www.w3.org/MarkUp
Ich habe folgenden Code aus einem Applet,
doch ich weiß nicht wie ich das in eine Applikation umschreiben soll.
[
Code:
color=blue]public void infoClicked()
{
try {
URL url=new URL(getDocumentBase(), "Rate.html");
taInfo.append("Protokoll: "+url.getProtocol()+"\n");
taInfo.append("File: "+url.getFile()+"\n");
taInfo.append("Host: "+url.getHost()+"\n");
taInfo.append("URL ext.Form: "+url.toExternalForm()+"\n");
}
catch (MalformedURLException ex)
{
taInfo.append("Fehler in der URL");
}[/color]