你能否将String转换为Int in else?

时间:2018-02-27 04:44:34

标签: java string type-conversion

我已经摆弄了一下,但是我无法让它运行起来。一切都有效,除了最后一节,我希望它将月份作为数字。有一个更好的方法吗?我得到的是,每当我运行程序时,我希望它给我数月的部分总是给我0的其他值。是的,我知道我可以使用开关,我有作为开关完全正常工作的版本,但我需要它作为if / else。

在这种情况下我能做些什么吗?

import java.util.Scanner;

public class Months {

    static Scanner userInput = new Scanner(System.in);

    public static String idString(){

         return "Months, Kain R, csscXXXX";

    }

    public static void main(String[] args) {

        System.out.println("Enter the month:");

        String userMon = userInput.nextLine();

        if (userMon.charAt(0) > 90 ) {
            userMon = userMon.substring(0,1).toUpperCase() + userMon.substring(1);
        }

        else {
            userMon = userMon;
        }

        System.out.println("You entered " + userMon);

        userMon = userMon.substring(0, 3).toUpperCase();


        System.out.println("Its abbreviation is " + userMon);


        if (userMon == "JAN") {
            userMon = "1";
        }
        else if (userMon == "FEB") {
             userMon = "2";
        }
        else if (userMon == "MAR") {
            userMon = "3";
        }
        else if (userMon == "APR") {
            userMon = "4";
        }
        else if (userMon == "MAY") {
            userMon = "5";
        }
        else if (userMon == "JUN") {
            userMon = "6";
        }
        else if (userMon == "JUL") {
            userMon = "7";
        }
        else if (userMon == "AUG") {
            userMon = "8";
        }
        else if (userMon == "SEP") {
            userMon = "9";
        }
        else if (userMon == "OCT") {
            userMon = "10";
        }
        else if (userMon == "NOV") {
            userMon = "11";
        }
        else if (userMon == "DEC") {
            userMon = "12";
        }
        else {
            userMon = "0";
        }


        System.out.println("This is month number " + userMon);
    }
}

1 个答案:

答案 0 :(得分:1)

在Java中,为了比较两个String对象,必须使用方法“equals”。如果您使用==,则表示您正在比较它们不同的参考文献。

始终将文字放在前面以避免NullPointersExceptions。

if ("JAN".equals(userMon)) {
    userMon = "1";
}