Guest User

Untitled

a guest
Jun 20th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. WebView browser = new WebView();
  2. WebEngine webEngine = browser.getEngine();
  3. ClassLoader classLoader = getClass().getClassLoader();
  4. String s = classLoader.getResource("subfolder/abc.html").toExternalForm();
  5. webEngine.load(s);
  6.  
  7. file:jar:C:/Something/MainA/libs/SecondB.jar!/subfolder/abc.html
  8.  
  9. String fileloc = "/docs/help/userguide.html";
  10. ...
  11. String fullLink = getClass().getResource(fileloc).toExternalForm();
  12. ...
Add Comment
Please, Sign In to add comment