0

我对 Java 还是很陌生,一直在尝试让莫尔斯电码翻译器工作。我通过各种错误克服了第一个问题,但现在程序编译但不会打印翻译结果。任何帮助,将不胜感激。

import java.util.Scanner;

public class MorseCode
{
    public static void main(String[] args)
    {
        Scanner Input = new Scanner(System.in);

        System.out.println("To convert English to Morse Code, type M. To convert Morse Code to English, type E.");

        String cType = Input.nextLine();

        String type = cType.toLowerCase();

        if(type == "m")
        {
            String eng;
            System.out.println("Please enter the English text to be translated.");
            eng = Input.nextLine();
            EToM(eng);
        }
        else
        {
            String morse;
            System.out.println("Please enter the Morse code text to be translated, with multiple words seperated by a |.");
            morse = Input.nextLine();
            MToE(morse);
        }
    }
    public static void EToM(String eng)
    {
        String EToMList[] = {".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".--", "-.-", ".-..", "--", "-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..", ".----", "..---", "...--", "....-", ".....", "-....", "--...", "----.", "-----", "|"};

        String alphabet = "abcdefghijklmnopqrstuvwxyz123456789 ";
        String translation[] = new String[eng.length()];

        for(int x = 0; x < eng.length(); x++)
        {
            for(int y = 0; y < alphabet.length(); y++)
            {
                if(eng.charAt(x) == alphabet.charAt(y))
                {
                    translation[x] = EToMList[y];
                    System.out.println("test");
                }
            }
        }

        System.out.println("Your translated message is:");

        for(int z = 0; z < eng.length(); z++)
        {
            System.out.println(translation[z]); 
        }
    }

    public static void MToE(String morse)
    {

    }
}       
4

4 回答 4

3

你的问题是

if(type == "m")

利用

if("m".equals(type))

if-else会去,else因为你正在比较字符串引用而不是字符串值。else调用MToE为空的方法。阅读本文:如何比较 Java 中的字符串

于 2013-08-16T15:20:46.067 回答
0

在 Java 中检查字符串是否相等时,始终使用 String 类的equals方法。更改以下内容:

if(type == "m")

if(type.equals("m"))

使英语到摩尔斯电码的翻译输出。

我做了这个修改,刚才运行成功了。

于 2013-08-16T15:24:21.463 回答
0

用这个

  if(type.equalsIgnoreCase("m")
  {

  }
于 2013-08-16T15:25:37.257 回答
-1

您可以使用 Java 中的 deepToString 方法打印出您的数组。

文档链接: http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Arrays.html#deepToString(java.lang.Object[])

这是一个代码示例:

System.out.println("Your translated message is:" + java.util.Arrays.deepToString(translation));    
于 2013-08-16T15:25:20.480 回答