我上大学的任务是编写莫尔斯电码解码器。我有字符串数组,其中包含“莫尔斯字母”的每个字母。在一个 for 循环中,我使用 substring-method 将 morsecode 中的句子切割成“morseletters”。我制作了另一个 for 循环和一个 if 语句,以检查“morse-alphabet”中的哪个字母与当前的“morseletter”匹配。我使用了 String.equals 方法,但它不起作用。即使两个字符串相同。我还打印了循环中每个字符串的长度,以检查字符串是否包含一些不需要的空格。但是即使字符串看起来相同并且长度相同,我的 if 语句的条件也永远不会正确。问题是equals-method。我必须更改什么才能使我的代码正常工作?
public class Morse {
private static String[] morsecodes = { ".-", "-...", "-.-.", "-..", ".",
"..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--", "-.",
"---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--",
"-..-", "-.--", "--.." };
public static void main (String args[]) {
System.out.println(decodeMorseCode(".... . .-.. .-.. --- .-- --- .-. .-.. -.."));
}
public static String decodeMorseCode(String morseText) {
String realText = "";
String morseLetter = "";
int counter = 0;
for(int i = 0; i < morseText.length(); i++) {
if((morseText.charAt(i)==' ')) {
morseLetter = morseText.substring(counter,i);
counter = i+1;
}
if(morseText.charAt(i)==' '||i+1==morseText.length()) {
for (int j = 0; j < 26; j++) {
if((morsecodes[j].equals(morseLetter))) { //this is the if-statemen which causes the problem
char c = (char)(j+97);
realText += c;
}
if(j+1<=morseText.length()) {
if(morseText.charAt(j)==' '&& morseText.charAt(j+1)==' ') {
realText += " ";
}
}
morseLetter = "";
}
}
}
return realText;
}
}
UYOU
慕后森
相关分类