Hello,
i'm using these lines to include css file and it works well with JAva 7
try {
String style = this.getClass().getResource("sheet.css").toExternalForm();
scene.getStylesheets().add(style );
} catch (Exception ex) {
}
Css File is no more found with JAVA 8 when compiled with JAVA7
any one helps me solving this issue?