简体   繁体   English

如何使用按钮从另一个类调用方法?

[英]How to use a button to call a method from another class?

I'm pretty new to Java, I'm trying to make a basic UI. 我对Java很陌生,我正在尝试制作一个基本的UI。 I can use JButtons to call JOptionPanes easily, but what I can't do is use them to call anything from another class. 我可以使用JButton轻松地调用JOptionPanes,但是我不能使用它们来调用另一个类中的任何东西。

Currently I have my main class, my UI class, and my class that handles my data. 目前,我有我的主类,UI类和处理数据的类。

In my class that handles my data I have a method that performs a basic sum on 2 elements of an array: 在处理数据的类中,我有一个对数组的2个元素执行基本求和的方法:

    public void firstMonth(){
        String ans;
        int num1 = Integer.parseInt(sortedData[0][0][0]);
        int num2 = Integer.parseInt(sortedData[0][0][1]);
        int sum = num1 * num2;

        ans=String.format("The sum of day1 and day2 is: %s", sum);
        JOptionPane.showMessageDialog(null, ans, "Title", JOptionPane.PLAIN_MESSAGE);

    }

Then in my UI class I try and call it when one of the buttons is pressed: 然后在我的UI类中,我尝试在按下按钮之一时调用它:

public class UserInterface extends JFrame {

GetData a = new GetData();

    private class myhandler implements ActionListener{

        public void actionPerformed(ActionEvent event){

            if(event.getSource()==button1){
                a.firstMonth();

            }
}
}

But when I press the button I get more exceptions that I can bear to count. 但是当我按下按钮时,我得到了更多我可以承受的例外。 Any ideas? 有任何想法吗?

Sorry if this is a really basic question. 抱歉,这是一个非常基本的问题。

Edit, here are the exceptions I get when I click the button: 编辑,这是单击按钮时遇到的异常:

Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:454)
    at java.lang.Integer.parseInt(Integer.java:527)
    at pkg110_term3.GetData.firstMonth(GetData.java:75)
    at pkg110_term3.UserInterface$myhandler.actionPerformed(UserInterface.java:71)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6505)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
    at java.awt.Component.processEvent(Component.java:6270)
    at java.awt.Container.processEvent(Container.java:2229)
    at java.awt.Component.dispatchEventImpl(Component.java:4861)
    at java.awt.Container.dispatchEventImpl(Container.java:2287)
    at java.awt.Component.dispatchEvent(Component.java:4687)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
    at java.awt.Container.dispatchEventImpl(Container.java:2273)
    at java.awt.Window.dispatchEventImpl(Window.java:2719)
    at java.awt.Component.dispatchEvent(Component.java:4687)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:729)
    at java.awt.EventQueue.access$200(EventQueue.java:103)
    at java.awt.EventQueue$3.run(EventQueue.java:688)
    at java.awt.EventQueue$3.run(EventQueue.java:686)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
    at java.awt.EventQueue$4.run(EventQueue.java:702)
    at java.awt.EventQueue$4.run(EventQueue.java:700)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:699)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

In your main class, this line - ans=String.format("The sum of day1 and day2 is: %s", sum); 在您的主类中,此行ans=String.format("The sum of day1 and day2 is: %s", sum);

Why do you use %s , that means a String variable and sum is an int . 为什么使用%s ,这意味着一个String变量,而sum是一个int Use %d instead. 请改用%d

Also what are the values stored in sortedData[0][0][0] and sortedData[0][0][1] ? 还有在sortedData[0][0][0]sortedData[0][0][1]存储的值是什么?

Given that Integer.parseInt takes a String argument, it's safe to say that sortedData is a 3D String array. 鉴于Integer.parseInt带有String参数,可以肯定地说sortedData是3D String数组。 From your stacktrace, the array sortedData is initialized but the individual elements are not . 从您的sortedData ,可以对数组sortedData进行初始化,但不会初始化各个元素。

The default value for Object types is null . Object类型的默认值为null The same applys for values within an Object array. 同样适用于Object数组中的值。

Make sure these elements have been assigned values prior to invoking Integer.parseInt . 在调用Integer.parseInt之前,请确保已为这些元素分配值。

for (int i=0; i < sortedData.length; i++) {
   for (int j=0; j < sortedData[i].length; j++) {
      for (int k=0; k < sortedData[i][j].length; k++) {
         sortedData[i][j][k] = ... // some string
      }
   }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM