Changer la taille de la police Java Swing

// make sure the new size is a float, not an int (add f at the end of the number)
label.setFont(label.getFont().deriveFont(newSize));
Comfortable Caterpillar