IM尝试使用Java / eclipse制作计算器。如何才能使只有数值可以输入文本区域?因此,当我运行应用程序时,它运行完美。所有按钮都完美运行。但我想让它只允许在文本区输入数字。
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.LayoutManager;
import java.awt.TextField;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import java.text.ParseException;
import java.util.Scanner;
public class calculator_gui<reutrn> implements ActionListener {
JFrame frame = new JFrame("Calculator");
JPanel Panel = new JPanel (new java.awt.FlowLayout());
JTextArea text = new JTextArea(1,20);
JButton but1= new JButton("1");
JButton but2= new JButton("2");
JButton but3= new JButton("3");
JButton but4= new JButton("4");
JButton but5= new JButton("5");
JButton but6= new JButton("6");
JButton but7= new JButton("7");
JButton but8= new JButton("8");
JButton but9= new JButton("9");
JButton but0= new JButton("0");
JButton butadd= new JButton("+");
JButton butsub= new JButton("-");
JButton butmulti= new JButton("*");
JButton butdiv= new JButton("/");
JButton buteq= new JButton("=");
JButton butclear= new JButton("C");
Double number1,number2,result;
int addc=0,subc=0,multic=0,divc=0;
public void gui(){
Panel.setLayout(FlowLayout());
frame.setVisible(true);
frame.setBounds(100, 100, 450, 285);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// frame.setResizable(false);
frame.add(Panel);
Panel.setBackground(Color.green);
Panel.add(text);
text.setBounds(10, 32, 361, 29);
Panel.add(but1);
but1.setBackground(Color.red);
but1.setBounds(10, 81, 89, 23);
Panel.add(but2);
but2.setBounds(126, 81, 89, 23);
Panel.add(but3);
but3.setBounds(225, 81, 89, 23);
Panel.add(but4);
but4.setBounds(10, 115, 89, 23);
Panel.add(but5);
but5.setBounds(126, 115, 89, 23);
Panel.add(but6);
but6.setBounds(225, 115, 89, 23);
Panel.add(but7);
but7.setBounds(10, 149, 89, 23);
Panel.add(but8);
but8.setBounds(126, 149, 89, 23);
Panel.add(but9);
but9.setBounds(225, 149, 89, 23);
Panel.add(but0);
but0.setBounds(126, 183, 89, 23);
Panel.add(butadd);
butadd.setBounds(324, 81, 89, 23);
Panel.add(butsub);
butsub.setBounds(324, 115, 89, 23);
Panel.add(butmulti);
butmulti.setBounds(324, 183, 89, 23);
Panel.add(butdiv);
butdiv.setBounds(324, 149, 89, 23);
Panel.add(buteq);
buteq.setBounds(225, 183, 89, 23);
Panel.add(butclear);
butclear.setBounds(10, 183, 89, 23);
but1.addActionListener(this);
but2.addActionListener(this);
but3.addActionListener(this);
but4.addActionListener(this);
but5.addActionListener(this);
but6.addActionListener(this);
but7.addActionListener(this);
but8.addActionListener(this);
but9.addActionListener(this);
but0.addActionListener(this);
butadd.addActionListener(this);
butsub.addActionListener(this);
butmulti.addActionListener(this);
butdiv.addActionListener(this);
buteq.addActionListener(this);
butclear.addActionListener(this);
}
private LayoutManager FlowLayout() {
// TODO Auto-generated method stub
return null;
}
@Override
public void actionPerformed(ActionEvent e){
Object source = e.getSource();
if(source==butclear){
number1=0.0;
number2=0.0;
text.setText(null);
}
if(source==but1){
text.append("1");
}
if(source==but2){
text.append("2");
}
if(source==but3){
text.append("3");
}
if(source==but4){
text.append("4");
}
if(source==but5){
text.append("5");
}
if(source==but6){
text.append("6");
}
if(source==but7){
text.append("7");
}
if(source==but8){
text.append("8");
}
if(source==but9){
text.append("9");
}
if(source==but0){
text.append("0");
}
if(source==butadd){
number1=number_reader();
text.setText("");
addc=1;
subc=0;
multic=0;
divc=0;
}
if(source==butsub){
number1=number_reader();
text.setText("");
addc=0;
subc=1;
multic=0;
divc=0;
}
if(source==butmulti){
number1=number_reader();
text.setText("");
addc=0;
subc=0;
multic=1;
divc=0;
}
if(source==butdiv){
number1=number_reader();
text.setText("");
addc=0;
subc=0;
multic=0;
divc=1;
}
if(source==buteq){
number2=number_reader();
if(addc>0){
result=number1+number2;
text.setText(Double.toString(result));
}
if(subc>0){
result=number1-number2;
text.setText(Double.toString(result));
}
if(multic>0){
result=number1*number2;
text.setText(Double.toString(result));
}
}
if(divc>0){
result=number1/number2;
text.setText(Double.toString(result));
}
}
public double number_reader(){
Double num1;
String s;
s=text.getText();
num1=Double.valueOf(s);
return num1;
}
}
答案 0 :(得分:1)
你可以做很多事情。
javax.swing.InputVerifier
。如果他们输入非法的东西,这将阻止人们查看。这可能还不够。Document
设置自定义JTextArea
。使用您编写的PlainDocument
子类,覆盖其insertText
方法并拒绝非数字。这将兼顾打字和剪切和粘贴。如果您没有一个巨大的actionPerformed
方法用于所有数字和操作按钮,您将在下次尝试时做得更好。相反,为每个按钮指定AbstractAction
的子类。数字按钮可以共享一个类的实例。
JComponent
,包括JButton
,可以有客户端属性,因此您可以编写类似
JButton but1= new JButton("1");
but1.setClientProperty("digit", "1"); // Why a string?
// Suppose you have a switch to use hexadecimals?
然后可以访问按下按钮的动作侦听器只需在其上调用getClientProperty("digit")
即可找出用户选择的数字。对于少量投资,您可以节省大量重复代码。
最后,学习模型 - 视图 - 控制器架构,或MVC
。不要直接在文本区域进行操作。如果没有RFC,添加更多操作或切换到RPN计算器会有很多问题。
另外,您的计算器类名称有点奇怪。 calculator_gui<reutrn>
这个名字毫无意义;为什么一般?为什么违反Java标准?只需将其称为Calculator
。
海报要我展示如何将按钮创建系数转换为循环。所以,替换十行:
JButton but1= new JButton("1");
JButton but2= new JButton("2");
JButton but3= new JButton("3");
JButton but4= new JButton("4");
JButton but5= new JButton("5");
JButton but6= new JButton("6");
JButton but7= new JButton("7");
JButton but8= new JButton("8");
JButton but9= new JButton("9");
JButton but0= new JButton("0");
成:
JButton[] digitButton = new JButton[10]; // digitButton is an arry of JButtons,
// Initialized to nulls.
for(final int i = 0; i < 10; i++) {
digitButton[i] = new JButton(Integer.toString(i)); // Convert 0 to "0", etc.
// Then make a button.
}
现在,为每个按钮指定一个自己的动作侦听器,而不是让主类有一个按钮。
答案 1 :(得分:0)
只是提出一个条件:
if ((text.contains("[a-zA-Z]+") == false){
//error
}
else{
//do your computation.
}
或
if ((text.contains("[0-9]*") == true){
//your code
}