线程“main”中的异常java.lang.StringIndexOutOfBoundsException:字符串索引超出范围:0

时间:2012-10-22 23:13:07

标签: java

我想创建一个小型控制台程序,从Celsius转换 - 华氏度,反之亦然,这是我试过的代码:

import java.util.Scanner;

public class CelsiusFahrenheit {

    private static Scanner s;

    public static void main(String[] args) {

        s = new Scanner(System.in);
        char reponse = 'N', choixConvert;

        do
        {
            do
            {
                System.out.println("Choisie le mode de converstion : ");
                System.out.println("1 - Converstisseur Celesuis - Fahrenheit");
                System.out.println("2 - Converstisseur Fahrenheit - Celesuis");

                do
                {
                    System.out.print("Votre Choix: ");
                    choixConvert = s.next().charAt(0);
                    if(choixConvert != '1' && choixConvert != '2')
                          System.out.println("Mode inconnu, veuillez réitérer votre choix.");
                }
                while(choixConvert!='1' && choixConvert!='2');

                System.out.print("Température à convertir : ");
                double temp = s.nextDouble();
                System.out.print("Resultat est: " + ConvertCelesuisFahrenheit(choixConvert,temp));
                System.out.println("\nSouhaitez-vous convertir une autre température ? (O/N)");
                reponse = Character.toUpperCase(s.nextLine().charAt(0));

            }while(reponse != 'O' && reponse != 'N');
        }while(reponse == 'O');

        System.out.println("Au revoir !");
    }

    private static Double ConvertCelesuisFahrenheit(int choixConvert,double temp )
    {
        if(choixConvert == 1)
            return (9/5)*temp+32;
        else
            return (temp-32)*(5/9);
    }
}

但我遇到的问题是ConvertCelesuisFahrenheit()函数总是返回0.0,之后它给了我这个错误:

  

线程中的异常" main" java.lang.StringIndexOutOfBoundsException:   字符串索引超出范围:java.lang.String.charAt为0(未知   来源)在CelsiusFahrenheit.main(CelsiusFahrenheit.java:33)

这是输出:

Choisie le mode de converstion : 
1 - Converstisseur Celesuis - Fahrenheit
2 - Converstisseur Fahrenheit - Celesuis
Votre Choix: 2
Température à convertir : 33
Resultat est: 0.0
Souhaitez-vous convertir une autre température ? (O/N)
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
    at java.lang.String.charAt(Unknown Source)
    at CelsiusFahrenheit.main(CelsiusFahrenheit.java:33)

3 个答案:

答案 0 :(得分:6)

nextDouble()将换行留在输入流中,因此当您调用

nextLine().charAt(0)

nextLine()的结果是一个空字符串。从流中删除换行符,或使用next(),如上所述。

答案 1 :(得分:2)

这里有几个问题..

nextLine().charAt(0)获取空字符串,因为nextDouble()

未使用新行

您只需添加

即可解决此问题
String continueString = s.next();
response = Character.toUpperCase(continueString.charAt(0));

此外,转换计算中的数学运算不正确。使用5.0/9.0代替5/9

最后,您将choixConvert字符作为char阅读,但随后将其作为int传递给您的方法,因此else块将始终执行。

答案 2 :(得分:1)

使用

更新此内容:reponse = Character.toUpperCase(s.nextLine().charAt(0));
          String line = s.nextLine();
          while(line.length() <1){
             line = s.nextLine();
          }
          reponse = Character.toUpperCase(line.charAt(0));