How to import SWT library into Eclipse Workspace?

In order to develop SWT application in Eclipse environment, we have to import SWT library into Eclipse Workspace manually.

Here is the steps to import SWT library

1) Right click on Java Project – Click Properties
2) Click Java Build Path –> Libraries –> Add Variable –> Configure Variable

3) Click New –> Type a new variable name “SWT_LIB” in Name field
4) Click File and browse to SWT library file

P.S SWT library is located at Eclipse’s plugin folder, it’s name usually formatted as org.eclipse.swt.win32.win32.x86_versionnumber.jar

For Example,

D:/J2EE/eclipse/plugins/org.eclipse.swt.win32.win32.x86_3.3.2.v3347a.jar

4) Done

We can start our SWT development work now. Happy Coding ~

8 comments on “How to import SWT library into Eclipse Workspace?

  1. excellent – I’ve trawled the web to try to make this work and your site has the only straightforward answer.

    Reply
  2. Hi Mkyong,
    Thanks for another helpful article!!

    I managed to import the SWT library however i am having trouble importing certain methods from that SWT library. When trying to import the Display method i type

    import org.eclipse.swt.widgets.Display;

    There is however no Display, trying widgets.*; does not help either.

    Reply
  3. I have spent lot of time for configuring SWT eclipse, this one is very good option

    Reply

Leave a Comment

Your email address will not be published. Required fields are marked *