Boa noite.
Preciso escrever o símbolo de metros cúbicos em um JLabel, mas não sei como se coloca aquele 3zinho ali em cima.
Alguém sabe como se faz (se é que dá pra fazer)?
Não sei se é a melhor forma de fazer, mas funciona do jeito que vc quer, se alguém tiver uma forma mais simples e melhor, postem pra eu saber tb. Abs!
import javax.swing.JFrame;
import javax.swing.JLabel;
public class simboloCubico {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(300,300);
JLabel label = new JLabel("<html>m<sup>3</sup></html>");
frame.add(label);
frame.setVisible(true);
}
}
Boa noite Colegas !
No meu note se eu aperto Alt Gr + 3 sai ³
import javax.swing.JFrame;
import javax.swing.JLabel;
public class SimboloCubico {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(300,300);
JLabel label = new JLabel("m³");
frame.add(label);
frame.setVisible(true);
}
}
Testei os dois e funcionaram, mas acho q vou ficar com a segunda solução.
Valeus.