我试图->
用 ASCII 艺术制作箭头,但我的 JLabel 不合作。它给了它这样的外观:
这使它看起来像 _> 或其他东西。我如何解决它?
SSCCE:
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.WindowConstants;
public class Test {
public static void main(String[] args) {
JFrame j = new JFrame("TEST");
j.add(new JLabel(" -> "));
j.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
j.pack();
j.setSize(j.getWidth() * 3, j.getHeight() * 3);
j.setLocationRelativeTo(null);
j.setVisible(true);
}
}