私は、ユーザーの入力から複数行のテキストを読み込んで、アルファベットの各文字が文字列に表示される回数を表示する必要があるプログラムを作成しています。最後の行は、センチネル値として機能するピリオドで終わります。これはこれまで私が持っているものです:ユーザー入力から複数行のテキストを取得する方法はありますか?
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class LetterCounter
{
public static void main(String[] args)
{
try {
BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
String lineOfText;
char letter, choice;
int countArray[] = new int[26];
do
{
System.out.println("Enter the String (Ends with .):");
while ((lineOfText = input.readLine()) != null)
{
for (int i = 0; i < lineOfText.length(); i++)
{
letter = lineOfText.charAt(i);
int index = getIndex(letter);
if (index != -1)
{
countArray[index]++;
}
}
if (lineOfText.contains("."))
break;
}
System.out.println("Count Alphabets:");
for (int i = 0; i < countArray.length; i++)
{
System.out.println((char) (65 + i) + " : " + countArray[i]);
}
//Ask user whether to continue or not
System.out.println("\nWould you like to repeat this task? (Press y to continue or n to exit program): ");
choice = input.readLine().toLowerCase().charAt(0);
System.out.println();
} while (choice == 'y');
}
catch (IOException e)
{
// Auto-generated catch block
e.printStackTrace();
}
}
//method to get the index of alphabet
public static int getIndex(char letter)
{
if (Character.isAlphabetic(letter))
{
if (Character.isUpperCase(letter))
{
return (int) letter - 65;
}
else
{
return (int) letter - 97;
}
}
else
{
return -1;
}
}
}
私は複数行のテキストをどのように許可するのだろうと思いました。だから私は1つの行をすることができます。
http://stackoverflow.com/questions/14169661/read-complete-file-without-using-loop-in-java –
テキストファイルを使用していないので、ファイル全体を読むことができます。 – Derek
多分 'Scanner'は助けます:http://stackoverflow.com/questions/2296685/how-to-read-input-with-multiple-lines-in-java – Philipp