# chromium-swt **Repository Path**: quickthinking/chromium-swt ## Basic Information - **Project Name**: chromium-swt - **Description**: Create and render web UIs in Java SWT and Eclipse RCP applications. - **Primary Language**: Java - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-01-24 - **Last Updated**: 2022-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # chromium-swt #### 介绍 Create and render web UIs in Java SWT and Eclipse RCP applications. It is based on and uses the Equo Chromium Community Edition (https://github.com/equoplatform/chromium-swt). #### 软件架构 Eclipse插件体系结构 #### 安装教程 1. eclipse-Help-Install New Software-Add,Location填写:http://dl.tlv8.cn/chromium-swt #### 使用说明 ``` import com.tulin.v8.swt.chromium.Browser; public class SinglePagePart { public void createBrowser(Composite parent, String url) { Browser browser = new Browser(parent, SWT.NONE); browser.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true)); browser.setUrl(url); } } ```