I tried:
//All the stuff with JLabel initialization
int Number = 10;
String data = "Value: " + Number;
lbl.setText(data); //The JLabel says: "Value:..."
System.out.println(data); //The console says: "Value: 10"
How can I fix this? This problem never happened to me before.