BrowserLoadingWebsite.java Source code

Java tutorial

Introduction

Here is the source code for BrowserLoadingWebsite.java

Source

import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class BrowserLoadingWebsite {
    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);

        Browser browser = new Browser(shell, SWT.NONE);
        browser.setBounds(5, 5, 600, 600);

        browser.setUrl("http://java2s.com");
        shell.open();

        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }
}