Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

getResource() not working with JAVA8 to include CSS file

newjavalearnerApr 9 2014 — edited May 5 2014

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?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 2 2014
Added on Apr 9 2014
12 comments
8,020 views