[java] Defining constant string in Java?

I have a list of constant strings that I need to display at different times during my Java program.

In C I could define the strings like this at the top of my code:

#define WELCOME_MESSAGE "Hello, welcome to the server"
#define WAIT_MESSAGE "Please wait 5 seconds"
#define EXIT_MESSAGE "Bye!"

I am wondering what is the standard way of doing this kind of thing in Java?

This question is related to java string

The answer is


You can use

 public static final String HELLO = "hello";

if you have many string constants, you can use external property file / simple "constant holder" class


public static final String YOUR_STRING_CONSTANT = "";

It would look like this:

public static final String WELCOME_MESSAGE = "Hello, welcome to the server";

If the constants are for use just in a single class, you'd want to make them private instead of public.


We usually declare the constant as static. The reason for that is because Java creates copies of non static variables every time you instantiate an object of the class.

So if we make the constants static it would not do so and would save memory.

With final we can make the variable constant.

Hence the best practice to define a constant variable is the following:

private static final String YOUR_CONSTANT = "Some Value"; 

The access modifier can be private/public depending on the business logic.


simply use

final String WELCOME_MESSAGE = "Hello, welcome to the server";

the main part of this instruction is the 'final' keyword.


Or another typical standard in the industry is to have a Constants.java named class file containing all the constants to be used all over the project.