Skip to main content

Where to Place External CSS File

The following is what a lot of tutorials recommend to specify the CSS file in JavaFX

scene.getStylesheets().add("myStyle.css");

But where do you place the "myStyle.css" file?

A JavaFX project typically is located as follows (using Netbeans):

C:\Users\UserName\Documents\NetBeansProjects\JavaFXProjectFolder

Insider the project folder, you will find the following:


Don't place your CSS file in "src" which is where many tutorial tell you to place the CSS file. You will loose your hair prematurely  due to excessive scratching as you try to convince your app to find your CSS.

Instead, open the "build" folder inside which you will find:

Place your CSS file in the "classes" folder that contains compiled Java classes. It will look like this:

Best wishes with you JavaFXing.

Comments

Post a Comment

Popular posts from this blog

LAMBDA EXPRESSIONS FOR HANDLING EVENTS

Event handlers form the core of any application. They define what happens when you click a button, press a key, select a menu and so on. The discussion on this site demonstrates how to use Lambda expressions to handle events. It is elegant and greatly simplifies your code. The old way of handling a button-click looks like this: Button btn = new Button(); btn.setText("Say 'Hello World'");  btn.setOnAction(new EventHandler<ActionEvent>() {       @Override       public void handle(ActionEvent event)       {           System.out.println("Hello World!");       }  }); The following is a Lambda expression using a "goes to" operator (->): Button button = new Button("Click"); button.setOnAction(value -> { label.setText("Clicked!"); }); Even more elegant: someButton.setOnAction(evt -> someM...

How to Run JavaFX 11+ in Intellij IDEA

First published: 8th June 2019 This page explains: 1. How to set up Intellij IDEA with JavaFX 11+ 2. How to configure Intellij IDEA to run JavaFX programs. Follow the links below to download the guides: 1. JavaFX 1 - Installing IntelliJ IDEA and JavaFX 11 Tutorial (8-6-19) 2.  Configure Intellij IDEA to run JavaFX programs