Sunday, November 1, 2020

How to easily embed a Google Map in your website

Some websites need a map to better describe the location, eg, Contact Us.

There is an easy way to embed a live Google Map with marker to our website.


Steps:

1. Navigate to https://www.embedgooglemap.net/ 

2. Enter an address into search box. eg. Legoland Malaysia


3. Click on get HTML-Code

4. Copy and paste the piece of HTML code into your HTML. 


Done!!

Wednesday, March 4, 2020

How to load file(s) in the same directory

The code below demonstrates how to load file(s), eg configuration, properties in the same directory with the jar file or the running class file.


try {
    File jarLoc = new File(
                        MyClass.class.getProtectionDomain()
                        .getCodeSource().getLocation().toURI().getPath());

    if(!jarLoc.isDirectory()) {
        // if this is a jar file, the full path with jar name returned. 
        currentPath = jarLoc.getParentFile().getPath();
    } else {
        // if this is a class file, full path until the parent directory
        currentPath = jarLoc.getPath();
    }

    String pathToFile = "currentPath + fileName.fileExtension";

} catch (URISyntaxException e) {
    e.printStackTrace();
}


The code below demonstrates how to load file's content in the jar file or in the classpath.

        InputStream in = getClass().getResourceAsStream(path);
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String line = null;
        String content = "";
        while ((line = reader.readLine()) != null) {
            content += line;
        }

OR

new String(Files.readAllBytes(Paths.get(path)))




Done!!

LinkWithin

Related Posts Plugin for WordPress, Blogger...