All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.net.URL Maven / Gradle / Ivy

Go to download

OpenGL vector map library written in Java - running on Android, iOS, Desktop and within the browser.

There is a newer version: 0.20.0
Show newest version
package java.net;

public class URL {
    @Override
    public String toString() {
        return mPath;
    }

    String mProtocol;
    String mHostname;
    int mPort;
    String mPath;

    public URL(String protocol, String hostName, int port, String path) {
        //mPath = "http://" +hostName +"/" + path;
        mPath = path;
    }

    public URL(String path) throws MalformedURLException {
        mPath = path;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy