Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to use CSS in JavaFX 2.0. But it doesn't work. I tried to import a CSS file:

Group root = new Group();

Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN); scene.getStylesheets().add(example.css");

But NetBeans always throws the following exception:

WARNING: com.sun.javafx.css.StyleManager$2 run Resource "null" not found.

I tried to put the CSS file in the project directory, into the src directory and to use a absolute path: "C:\\Users\\janus\\Documents\\NetBeansProjects\\example.css"

Nothing solved the problem

share|improve this question
Same happened to me too. Still no answer. – Knight Jul 14 '12 at 15:31

10 Answers

up vote 2 down vote accepted

You could also try this ..

In your src folder add

src/resources/css/yourStyle.css

then add the following code

scene.getStylesheets().add("resources/css/yourStyle.css");

share|improve this answer

This works, if your CSS file is in the same package.

scene.getStylesheets().add(YourClazz.class.getResource("myCssFile.css").toExternalForm());
share|improve this answer

I had trouble with this too but got it working with something like this:

String cssPath = "/com/yourdomain/resources/style.css";
scene.getStylesheets().addAll(cssPath);

Change the value of cssPath to match the package that contains your css file.

share|improve this answer
Wonderful- was tearing my hair out in frustration over this. First one of the fixes that worked for me (needed to clean and rebuild in addition). – The Unfun Cat Aug 27 '12 at 14:58
scene.getStylesheets().add("/com/yourdomain/resources/style.css"); should be fine – Mahan Dec 28 '12 at 2:45

I have found that this whole .css problem can be solved, when using NetBeans, go to the project properties - run - Standalone Application Properties - Working directory and select the path to the directory where the .css file and/or main class is located. I don't know what (windows) is using as default, probably a temp dir.. if so, then there are ofcourse no .css files there and you get the nullpointer exception.

share|improve this answer

One possible reason for this is that you need clean and re-build your project before run.

share|improve this answer
Hello Henry, and welcome to SO... please elaborate the answer – Andrew Oct 26 '12 at 5:36

There are lot of suggestions to putting your css files in various places, but this is what works for me. Any files you add to your project must be in your project home directory that NetBeans creates. For example, if your project name is HiJohn and it resides in /NetBeansProjects/HiJohn you need to place your .css file in the directory HiJohn and you can reference it just using style.css.

For myself, I've created a resource folder in my NetBeans project called resources. This makes it so I can accesss any file in that resource folder using resources/style.css or resources/settings.xml

If you still have questions here is a great resource for getting the basics down:

http://docs.oracle.com/javafx/2/css_tutorial/jfxpub-css_tutorial.htm

Good luck!

share|improve this answer
"file:/"+ new File("styles/intro.css").getAbsoluteFile().getPath()
                    .replaceAll(" ", "%20");
share|improve this answer

In Eclipse, I found that I could enable the IDE to find the css file as follows:

Create a folder for your css file in your workspace (I had the most reliable success placing it in the src folder of the current project). In the project Properties > Resources > Linked Resources you can create a new variable and use an existing variable to define a nice simple path (e.g., create a Name: RESOURCES and hit Variables, choose PROJECT_LOC, hit Extend, choose/navigate to the folder that you created). What's nice is that Eclipse will immediately display the location you choose, and warn you if you try to reference a location that it can't find.

In your code, your path is now simply "RESOURCES/[fileName.css]".

share|improve this answer

If you want to style your complete application by one CSS you find a solution here: http://www.guigarage.com/2013/03/global-stylesheet-for-your-javafx-application/

share|improve this answer
scene.getStylesheets().add(getClass().getResource("YourCSSFile.css").toString());
share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Simon Arnold Jan 12 at 16:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.