如何将JAVA文件转换为UTF-8

时间:2018-10-01 03:26:06

标签: java swing utf-8

我有这个小代码:

import javax.swing.*;

public class Formulario extends JFrame{

    private JLabel label1;
    private JLabel label2;

    public Formulario(){
        setLayout(null);
        label1 = new JLabel("Interfaz gráfica.");
        label1.setBounds(10,20,300,30);
        add(label1);
        label2 = new JLabel("Versión 1.0");
        label2.setBounds(10,100,100,30);
        add(label2);
    }

    public static void main (String args []){

        Formulario formulario1 = new Formulario();
        formulario1.setBounds(0,0,300,200);
        formulario1.setResizable(false);
        formulario1.setVisible(true);
        formulario1.setLocationRelativeTo(null);
    }
}

但是输出是:“ Interfaz gr ?? fica”。而不是“ Interfazgráfica”。那么,如何将Java文件更改为UTF-8编码?谢谢

0 个答案:

没有答案