- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试为学校项目制作计算器,但无法显示 JTextArea。我需要一个窗口,以便用户可以看到他们输入计算器的数字和输出。
这是我的代码:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.ActionListener;
public class Calculator extends JFrame
{
JButton[] nums = new JButton [10];
JButton num1 = new JButton ("1");
JButton num2 = new JButton ("2");
JButton num3 = new JButton ("3");
JButton num4 = new JButton ("4");
JButton num5 = new JButton ("5");
JButton num6 = new JButton ("6");
JButton num7 = new JButton ("7");
JButton num8 = new JButton ("8");
JButton num9 = new JButton ("9");
JButton num0 = new JButton ("0");
JButton decimal = new JButton (".");
JButton clear = new JButton ("C");
JButton sqrt = new JButton ("\u221A");
JButton mod = new JButton ("%");
JButton dividebyone = new JButton ("1/x");
JButton factorn = new JButton ("!n");
public Calculator ()
{
JFrame window = new JFrame ("Calculator");
setSize (260, 325);
setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
setVisible (true);
JTextArea screen = new JTextArea (20, 20);
JScrollPane pls = new JScrollPane (screen);
screen.setBackground (Color.WHITE);
screen.setVisible (true);
getContentPane ().add (pls);
getContentPane ().add (stylize (num1));
num1.setBounds (20, 75, 45, 45);
num1.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
//Execute when button is pressed
System.out.println ("1");
}
}
);
getContentPane ().add (stylize (num2));
num2.setBounds (70, 75, 45, 45);
num2.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("2");
}
}
);
getContentPane ().add (stylize (num3));
num3.setBounds (120, 75, 45, 45);
num3.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("3");
}
}
);
getContentPane ().add (stylize (num4));
num4.setBounds (20, 125, 45, 45);
num4.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("4");
}
}
);
getContentPane ().add (stylize (num5));
num5.setBounds (70, 125, 45, 45);
num5.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("5");
}
}
);
getContentPane ().add (stylize (num6));
num6.setBounds (120, 125, 45, 45);
num6.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("6");
}
}
);
getContentPane ().add (stylize (num7));
num7.setBounds (20, 175, 45, 45);
num7.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("7");
}
}
);
getContentPane ().add (stylize (num8));
num8.setBounds (70, 175, 45, 45);
num8.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("8");
}
}
);
getContentPane ().add (stylize (num9));
num9.setBounds (120, 175, 45, 45);
num9.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("9");
}
}
);
getContentPane ().add (stylize (num0));
num0.setBounds (20, 225, 45, 45);
num0.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("0");
}
}
);
getContentPane ().add (stylize (decimal));
decimal.setBounds (70, 225, 45, 45);
decimal.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println (".");
}
}
);
getContentPane ().add (stylize (clear));
clear.setBounds (120, 225, 45, 45);
clear.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("c");
}
}
);
getContentPane ().add (stylize (sqrt));
sqrt.setBounds (170, 75, 51, 45);
sqrt.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("sqrt");
}
}
);
getContentPane ().add (stylize (mod));
mod.setBounds (170, 125, 51, 45);
mod.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("mod");
}
}
);
getContentPane ().add (stylize (factorn));
factorn.setBounds (170, 175, 51, 45);
factorn.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("!n");
}
}
);
getContentPane ().add (stylize (dividebyone));
dividebyone.setBounds (170, 225, 51, 45);
dividebyone.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
System.out.println ("1/x");
}
}
);
} //end Calculator
public static JButton stylize (JButton button)
{
button.setBackground (Color.WHITE);
return button;
} //end stylize
public static void main (String args[])
{
new Calculator ();
} //end main
} //end Calculator class
最佳答案
尝试这样做:
Public static void main(String arts[])
{
Calculator c= new Calculator();
c.setVisible(true);
}
从构造函数中删除 setVisible(true)。希望这有效。
由于您的框架在添加组件之前是可见的,因此它不会显示您的组件。
关于java - 无法让 JTextArea 显示在计算器上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36941862/
我有一个简单的 GUI,其中有一个 JTextArea。我创建了一个方法来从用户获取消息,另一个方法将文本附加到文本区域,如下所示 Message m = new Message(); ... pri
我正在使用 JList,并且尝试对单元格使用 JTextAreas(实现 ListCellRenderer)。它不起作用。这些单元格仅显示 ListCellRenderer.toString() 而不
此代码计算 JTextArea 的每一行并添加行数 左 JTextPane import java.awt.BorderLayout; import java.awt.Color; import ja
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我必须将一个jtextarea的内容复制到另一个jtextarea。怎么办?我已经做了以下操作:但是这个程序正在将一个jtext区域的文本逐个字符写入另一个jtext区域。我希望它在用户按下回车键时复
在我的 GUI 中,JScrollPane 中有一个附加到容器的 JTextArea。 ta = new JTextArea(); jsp = new JScrollP
我正在编写一些测试代码来练习 OOP,我想将 JTextArea 从“writeToArea”附加到定义和初始化 JTextArea 的“initialize”方法。我已经尝试直接调用“输出”变量,但
JComboBox cBox = new JComboBox(); cBox.addItem("Food"); String x = "Food"; cBox.addItem("Shi
我正在尝试将一个 JTextArea 放在 GUI 中的另一个 JTextArea 旁边 我正在为数据库编写 GUI,并希望将每列的数据放在不同的 JTextArea 中。这将使我的 GUI 看起来更
这是一个带有 JTextarea 的弹出 Jpanel,但我有一个问题。当我将鼠标移到 JTextarea 上时,它会闪烁。为什么会出现这种情况? 在 Debug模式下,鼠标移动会生成 mouseEx
我有一个类将输出显示到 JTextArea 中。意味着成功运行后,它将在文本区域中显示输出。 我还有一个主类,它将类与几个按钮组合在一起,以启动特定类中代码的执行。这个主类创建了一个带有几个按钮的 G
我的问题在于我的 DocumentLister AreaListener。我似乎无法弄清楚如何将用户输入的文本传递到一个 JTextArea 中进行转换,并将其返回到另一个 JTextArea。 该程
我有一个对象ReminderGUI其中有 JTextArea field 。 ReminderGUI代表一个可以保存和显示提醒的应用程序。当getReminderButton单击我希望应用程序找到之前
我目前正在使用 Swing 开发控制台窗口。它基于 JTextArea 并且像普通命令行一样工作。您在一行中键入一条命令,然后按回车键。在下一行中,显示了输出,在该输出下,您可以编写下一条命令。 现在
我开发了一个 Swing GUI,其中我尝试使用按钮使用另一个文本区域中的文本填充文本区域。 代码: private void jButton1ActionPerformed(java.awt.eve
当我制作时,我有一个包含 JPanel 的小型 GUI,其中有 JTextArea 和 JLabel panel1.setLayout(null); 我可以完成所需的位置,但 JTextArea 消失
我在 JDialog 框中有一个 JTabbedPane,它在 Pane 中包含的所有 JPanels 上使用 GridBagLayout 。在显示的第一个面板上有一个 JTextArea (desc
我搜索了答案,但我找到的只是解决方法,而不是原因,所以我问这个问题: 我是 GUI 编程的新手。在练习一些有关关键事件处理的代码时,我遇到了一个示例,该示例在 JFrame 中包含一个 JTextAr
将有 91 个文本区域,每个区域都显示一个值。我试图找到一种更有效的方法来解决这个问题,而不是只是盲目地添加 JTextAreas 并尝试管理 91 个文本区域中每个区域的实例化名称。 我愿意接受有关
private JPanel contentPane; public Driver() { setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
我是一名优秀的程序员,十分优秀!