我正在尝试在JTextPane中设置字体宽度,但是不知何故我没有发现如何做到这一点。

这是我已经拥有的代码:

Font resultFont = new Font("Courier", Font.PLAIN, 12);

JTextPane resultPane = new JTextPane();
resultPane.setText(result);
resultPane.setFont(resultFont);
resultPane.setEditable(false);

add(resultPane);


如果有可能拉伸字体,那真的很酷,因为我想显示一些ASCII艺术。

最佳答案

您是要拉伸字符还是仅调整“字距调整”(字符之间的间距)?
如果只是字距调整:您可以找到一个解决方案here

关于java - 在JTextPane中设置字体宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12299432/

10-11 04:40