我正在尝试为我的中级 Java 课程做作业。我应该编写这个小程序并提交 .java、.class 和 .html 文件。
我去了 .html 文件,看看我到目前为止写的内容是否会显示在网页上,但现在它确实出现了。我似乎没有 .class 文件。这是我的代码。我正在使用 NetBeans。
有人可以告诉我如何将 .class 文件放入我的文件夹中。
/*
* Curtis Sizemore
* IT 259 - Intermediate Java
* Unit 8
* Working with Applets
* I attest that this is a product of my own creation.
*
*/
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JTextField;
/**
*
* @author Curtis
*/
public class JDivide extends JApplet implements ActionListener
{
JTextField numer = new JTextField();
JTextField denom = new JTextField();
JLabel num = new JLabel("Numerator: ");
JLabel den = new JLabel("Denominator: ");
JLabel result = new JLabel();
JButton solve = new JButton("Click Me to Solve!");
Container con = getContentPane();
@Override
public void init()
{
con.setLayout(new GridLayout(3,2));
con.add(num);
con.add(numer);
con.add(den);
con.add(denom);
}
@Override
public void actionPerformed(ActionEvent e)
{
throw new UnsupportedOperationException("Not supported yet.");
}
}