Question

int variable = 100;

label = new JLabel("<html><font color=red>variable</font><html>");

How do I make this display "100" on screen and not "variable"

Was it helpful?

Solution

By building a String with it included:-

label = new JLabel("<html><font color=red>" + variable + "</font><html>");

This will output <html><font color=red>100</font><html> (well, in a label it will be formatted) The reason yours didn't work is because almost anything inside quotes is treated as a String so adding a variable in there is just the same as adding the name of the variable.

Additionally

This will also work for objects, not just primitive types like int by calling their toString() method and adding the output from that.

OTHER TIPS

You can use String.format method:

label = new JLabel(String.format("<html><font color=red>%d</font><html>", variable));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top