import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;

public class Main {

    public static void main(String[] args) throws IOException {
        URLConnection c = new URL("file:///C:/").openConnection();
        c.connect();
        c.setRequestProperty("test", "test");
        //c.connect(); 
    }
}
