Ejemplo 1: cómo cambiar el tamaño de fuente en JLabel
label = new JLabel("A label");
label.setFont(new Font("Serif", Font.PLAIN, 14));
Ejemplo 2: cambiar el tamaño de fuente 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));
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)