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

com.ui4j.sample.ReadHtmlFile Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.ui4j.sample;

import com.ui4j.api.browser.BrowserEngine;
import com.ui4j.api.browser.BrowserFactory;

public class ReadHtmlFile {

    public static void main(String[] args) {
        // Load sample file from classpath and get its URL location
        String url = ReadHtmlFile.class.getResource("/sample-page.html").toExternalForm();

        // get the instance of WebKit browser
        BrowserEngine browser = BrowserFactory.getWebKit();

        // navigate to url & show the browser page
        browser.navigate(url).show();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy