页面没有刷新或没有从我的文本字段获取输入

时间:2012-04-13 20:08:02

标签: java swing jpanel

  

可能重复:
  Im not sure how to get the data from my text field

我在一个文本字段中输入一个数字并使用该输入来更改一个int,这将改变一个矩形的大小,我不确定是否有错误,我不能从该文本字段或页面获取该数据只是在获取数据后才重新加载。

import java.awt.*;
import java.awt.event.*;
import java.awt.image.*;
import java.io.*;
import javax.imageio.*;
import javax.swing.*;
import java.net.*;
import java.sql.*;
import java.lang.Object;
import java.awt.Graphics;
import java.awt.Graphics2D;


public class Test extends JPanel implements ActionListener{

    JTextField textField;
    JFrame f=new JFrame();
    int x=77, y=441, w=23, h=10, entry;
    BufferedImage img=null;

   // BufferedImage img;

   public static void main(String[] args) {
        BufferedImage img =new BufferedImage(100, 50,BufferedImage.TYPE_INT_ARGB); 
        //textField = new JTextField();
        JFrame f = new JFrame("Load Image Sample");
        JTextField textField=new JTextField();
        f.add(textField);
        textField.setBounds(10,10,40,30);
        textField.setVisible(true);

        f.addWindowListener(new WindowAdapter(){
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
                }
            });

        f.add(new Test());
        f.pack();
        f.setVisible(true);
    }


    public void paintComponent(Graphics g) {
        g.drawImage(img, 0, 0, null);

        Graphics2D i = img.createGraphics();
       Color myColor = Color.decode("#32004b");
       i.setColor(myColor);
       i.fillRect(x,y,w,h);

           // g.fillRect(10,10,10,10);
    }

    public Test() {

       try {
           img = ImageIO.read(new File("sales-goal.png"));
       } catch (IOException e) {}


                //77,441,23,10
    }

    public Dimension getPreferredSize() {
        if (img == null) {
             return new Dimension(100,100);
        } else {
           //return new Dimension(img.getWidth(null), img.getHeight(null));
            return new Dimension(300,600);
       }
    }

    public void actionPerformed(ActionEvent e) {

        Graphics g= getGraphics();
        textField.addActionListener(this);

               if (e.getSource() == textField) {
                   entry= Integer.parseInt(textField.getText());
                   g.drawString("Test",50,50);

                   entry=h;

                }         
    }
}

3 个答案:

答案 0 :(得分:1)

你在做什么

JTextField textField=new JTextField();

在创建新局部变量的main方法中,但从未分配全局JTextField textField;。在您的actionPerformed中,您正在使用从未初始化的全局textField

答案 1 :(得分:1)

将变量声明为

     private static JTextField textField;

删除'JTextField'并将其用作

     textField = new JTextField();

在您的主要方法

答案 2 :(得分:0)

我会在你的主方法中替换这一行:

JTextField textField=new JTextField();

有了这些:

textField=new JTextField();
textField.addActionListener(this);

然后我会从您的actionPerformed方法中删除此行:

textField.addActionListener(this);