JScrollPane不能在GUI中工作

时间:2013-09-22 03:28:13

标签: java swing layout user-interface jscrollpane

好的,我正在尝试创建一个具有JScrollPane的GUI,通过JTextArea,它将一次打印出一行整数。我正在使用我为分配处理数据创建的一些方法,并让其中一个方法处理以下示例中的数据,(我无法显示方法,因为它的作业尚未到期)。这些方法已经过测试并且工作正常,因此在这个问题中不需要它们。到目前为止,文本区域将显示在GUI中,但没有附加滚动窗格,或者只有jlabel将显示通过该方法完成的工作的结果。有人可以查看我的代码并告诉我我做错了什么,因为我已经过了50次,并且无法让GUI表现出来。

public class MyClassName extends JFrame{

private JScrollPane myScroll;
private JTextArea myTextArea;
private JLabel myMean;
private JLabel myMedian;
private JLabel myMax;
private JLabel myMin;
private JLabel mySum;
private Container content;
private Font myFont;
private SpringLayout layout;


private MyClassName() {
    this(500,300,"TEST TITLE");
}

private MyClassName(int width, int height, String title)
{
    this.setVisible(true);
    this.setTitle(title);
    this.setSize(width, height);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    guiComponent();
}

public void guiComponent()
{
    layout = new SpringLayout();
    content = this.getContentPane();

    int [] test = {50,37,43,12,8,16,32,44,78,92,1,3,66,34};

    myTextArea = new JTextArea();

    myScroll = new JScrollPane(myTextArea);
    content.add(myScroll);

    myMean = new JLabel("MEAN : " + MyClassName.mean(test));
    for(int count : test)
    {
        String z = Integer.toString(count);
        myTextArea.append('\n' + z);
    }

    myFont = new Font("Serrif", Font.BOLD, 30);
    myMean.setFont(myFont);

    content.add(myScroll);
    layout.putConstraint(SpringLayout.WEST, myScroll, 20, SpringLayout.WEST, content);
    layout.putConstraint(SpringLayout.NORTH, myScroll, 25, SpringLayout.NORTH, content);

    content.add(myMean);
    layout.putConstraint(SpringLayout.WEST, myMean, 20, SpringLayout.EAST, myScroll);
    layout.putConstraint(SpringLayout.NORTH, myMean, 25, SpringLayout.NORTH, content);
}

public static double mean(int[] ar) {
    double x = 0;
    for (int i = 0; i < ar.length; i++) {
        x += ar[i];
    }
    return x / ar.length;
}

public static void main(String[] args) {

    MyClassName test2 = new MyClassName();
}

1 个答案:

答案 0 :(得分:4)

当您需要在布局中显示组件时出现问题,解决您的问题在初始化'myTextArea'组件后添加这三行:

myTextArea.setColumns(20);
myTextArea.setRows(5);
getContentPane().setLayout(layout);

您可能需要阅读此link about Layout