11 1 Uniform Resource Locators URLs URL protocol

  • Slides: 7
Download presentation
Κεφάλαιο 11. 1 Uniform Resource Locators (URLs)

Κεφάλαιο 11. 1 Uniform Resource Locators (URLs)

Ανάλυση ενός URL protocol : // host : port / file # reference http:

Ανάλυση ενός URL protocol : // host : port / file # reference http: //www. ntua. gr: 80/index. html #1 Protocol Host Port File Reference

Ορισμένοι κατασκευαστές της κλάσης URL n URL(String address) Π. χ. URL ntua=new URL(“http: //www.

Ορισμένοι κατασκευαστές της κλάσης URL n URL(String address) Π. χ. URL ntua=new URL(“http: //www. ntua. gr”); n URL (String protocol, String host, String file) Πχ. URL ntua_noc=new URL(“http”, ”www. ntua. gr” , ”/gr_ked”); n URL (String protocol, String host, int port, String file) Π. χ. URL ntua_noc=new URL(“http”, ”www. ntua. gr”, 80, ”/gr_ked”);