Possible Duplicate:
SWT Browser widget: html source inside jar?
I'm loading a page in an SWT browser which is contained in a jar file like so:
final Browser browser = new Browser(composite, SWT.FLAT);
browser.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
browser.setUrl(this.getClass().getResource("/resource/activity.html").toString());
So far so good. Now the question is:
- Is it possible to link from within that activity.html page to other pages and images who are contained in the same jar file ?
- And if so, how ?"