未在GUI

时间:2015-09-19 05:46:39

标签: java user-interface textarea

我在this image中的JTextArea输出有一个奇怪的问题。我的程序要做的是通过GUI接受输入字符串,将其保存为图像,并设置值为>的每个像素。 0到''。这完全可以在控制台中找到,但是当它打印到JTextArea时,空格似乎是''的一半。我知道这个问题不是我的代码的实际问题,而是一些内置的JTextAreas问题。我将包含下面的代码,但我觉得唯一相关的行就在最后:tA.setText(output);

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.font.FontRenderContext;
import java.awt.font.GlyphVector;
import java.awt.font.TextLayout;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.awt.image.Raster;
import javax.swing.*;

public class Project4 extends JPanel implements ActionListener {

public static Project4 p = new Project4();
public static JTextField input = new JTextField("Java 2D");
public static JTextArea tA = new JTextArea();

public static void main(String[] args) {
    JFrame frame = new JFrame("Project 4");
    frame.setSize(600, 400);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
    JPanel panel = new JPanel();
    panel.add(p, BorderLayout.CENTER);
    input.setColumns(40);
    panel.add(input);       
    JButton print = new JButton("Print");
    print.addActionListener(p);
    panel.add(print);
    panel.add(tA);
    frame.add(panel);
    frame.setVisible(true);
}

@Override
public void actionPerformed(ActionEvent e) {
    Font f = new Font("Times New Roman", Font.BOLD, 20);
    FontRenderContext frc = new FontRenderContext(null, false, false);
    GlyphVector gv = f.createGlyphVector(frc, input.getText());
    Rectangle2D bounds = gv.getLogicalBounds();
    TextLayout tL = new TextLayout(input.getText(), f, frc);
    float ascent = tL.getAscent();
    BufferedImage b = new BufferedImage((int) bounds.getWidth(), 
        (int) bounds.getHeight(), BufferedImage.TYPE_BYTE_BINARY);
    Graphics2D g2 = b.createGraphics();
    g2.drawGlyphVector(gv, 0, ascent);
    g2.setPaint(Color.BLACK);
    g2.drawString(input.getText(), input.getAlignmentX(), input.getAlignmentY());

    String output = "", line = "";
    int spaceCount = 0;
    Raster r = b.getRaster();
    int[] i = new int[1];
    for (int y = 0; y < (int) bounds.getHeight() - 1; y++) {
        for (int x = 0; x < (int) bounds.getWidth() - 1; x++) {
            r.getPixel(x, y, i);
            int pixel = i[0];
            if (pixel > 0) {
                line += "*";
            } else {
                line += " ";
                spaceCount++;
            }
        }

        if (spaceCount != line.length())
            output += line + "\n";
        spaceCount = 0;
        line = "";
    }

    System.out.print(output);
    tA.setText(output);
}

}

**感谢编辑,Fast Snail!

1 个答案:

答案 0 :(得分:1)

JTextArea使用的字体使用的是可变宽度字体。为了确保您的空格和角色占用相同的空间,您需要使用monospaced font,例如Courier New。您可以在JTextArea上设置它,也可以用它来格式化字形。这应该是您actionPerformed中所需要的全部内容。

public void actionPerformed(ActionEvent e) {
    Font f = new Font("Courier New", Font.BOLD, 20);
    tA.setFont(f);

或者,您可以为字体创建static变量,只将其分配给JTextArea一次,然后在actionPerformed中重复使用。

它在你的控制台中工作的原因是因为它使用的是等宽字体,这在控制台输出中很常见。

我应该注意,用于栅格字形的字体不必与JTextArea中用于输出的字体相匹配。您可以使用非等宽字体来渲染字形,但JTextArea中类似ASCII的输出应使用等宽字体。