大家早上好,我是java编程的初学者。所以,直截了当,我正在创建一个程序,只需点击一下按钮即可读取和编译.txt文件。
我已经完成了对文件的阅读。我的问题是我的程序没有从第一个JTextArea编译文本并将结果显示给第二个JTextArea。
我已经有四天这个问题了,我一直试图以任何可能的方式改变代码。有人可以启发我并告诉我我的代码有什么问题吗?它肯定会帮助我很多。
非常感谢所有人。
@SuppressWarnings("IncompatibleEquals")
private void executeCodeActionPerformed(java.awt.event.ActionEvent evt) {
String loadi = "Load";
String add = "Add";
String subt = "Subt";
String mult = "Mult";
String div = "Div";
String input = "Input";
String print = "Print";
int number = 0;
String txt = textAreaCode.getText();
String split = " ";
String [] text = txt.split(split);
String word = text[0];
int num = Integer.getInteger(text[1]);
int result = num;
int result1 = 0;
Scanner scan = new Scanner(txt);
scan.nextLine();
for (int count=0;count<txt.length();count++ ) {
if (loadi.equalsIgnoreCase(word)){
result1 = num + number;
}
else if (add.equalsIgnoreCase(word)){
result1 = num + result;
}
else if (subt.equalsIgnoreCase(word)){
result1 = num - result;
}
else if (mult.equalsIgnoreCase(word)){
result1 = num * result;
}
else if (div.equalsIgnoreCase(word)){
result1 = num / result;
}
else if (print.equalsIgnoreCase(word)){
textAreaOutput.setText(String.valueOf(result1));
}
else if (input.equalsIgnoreCase(word)){
String nmbr = inputField.getText();
int nmr = Integer.parseInt(nmbr);
result1 = nmr + number;
}
}
答案 0 :(得分:0)
我发现代码中有一些错误可能会导致无法正常工作。他们在这里:
变量word
永远不会更新为以下标记(首先设置为text[0]
,然后永远不会更改)。同样适用于num
。
所有操作都对变量num
和result
起作用,然后将结果放入result1
。因此,中间结果不会从操作转移到下一个操作。
“输入”操作从inputField
加载当前值,而不等待用户实际键入内容。
主循环迭代,直到count
达到程序中的字符数;它应该循环代替令牌数。
此外,以下是一些使您的代码更符合条件的建议:
如果您是从Java开始,那么请删除Scanner对象,并仅保留“拆分空间”方法。我不建议将此用于实际问题,但Scanner
使用起来有点复杂。
将splited words数组包装到List集合中,然后从中获取迭代器。这是:
Iterator<String> words = Arrays.asList(txt.split("[ ]+")).iterator();
然后,将您的循环写为:
while (words.hasNext()) {
String command = words.next();
...
}
将操作助记符移到函数外部,并将其标记为final。
从每个操作块内部读取您的操作参数;这是必需的,因为某些操作不会收到参数。
好吧,我不会给你代码,因为这是你自己必须做的事情。希望有所帮助。祝你好运。