所以我有一個文件,其中有所有的總統 - 他們的名字,中間首字母(如果有的話)和姓氏。字符串數組名搜索
該文件需要被讀入,並且用戶可以輸入一個總統的名字來搜索它,並且該總統應該被顯示。
如果用戶使用名字或姓氏進行搜索,但不能同時使用這兩種方法,則會顯示總統。
例如,外部文件包含:
George,Washington,(1789-1797)
Franklin,D.,Roosevelt,(1933-1945)
... and so on with all the presidents
我需要的用戶能夠以兩種類型中的第一個名字,姓氏,或兩者姓和名,並獲得所需的結果(大部分日期並不相關)。
嘗試了很多不同的東西,但沒有達到那裏,只要顯示總統,如果用戶搜索的名字和姓氏。
這是我走到這一步:
public class NameSearch {
public static void main(String[] args) throws IOException {
try {
// read from presidents file
Scanner presidentsFile = new Scanner(new File("Presidents.txt"));
// scanner for user input
Scanner keyboard = new Scanner(System.in);
// create array list of each line in presidents file
ArrayList<String> presidentsArrayList = new ArrayList<String>();
// prompt user to enter a string to see if it matches with a president's name
System.out.println("Enter a search string of letters to find a president match: ");
// store user input
String userInput = keyboard.nextLine();
// add president file info to array list linesInPresidentFile
while (presidentsFile.hasNextLine()) {
presidentsArrayList.add(presidentsFile.nextLine());
} // end while loop
String presidentNamesArray[] = presidentsArrayList.toArray(new String[presidentsArrayList.size()]);
String results = searchArray(presidentNamesArray, userInput);
//System.out.println("\nThe presidents who have \"" + userInput + "\" as part of their name are: ");
} catch (FileNotFoundException ex) {
// print out error (if any) to screen
System.out.println(ex.toString());
} // end catch block
} // end main
// method to search for a specific value in an array
public static String searchArray(String array[], String value) {
for (int i = 0; i < array.length; i++) {
if (array[i].toLowerCase().contains(value.toLowerCase())) {
String splitter[] = array[i].split(" ,");
System.out.println(Arrays.toString(splitter));
}
}
return Arrays.toString(array);
}
}
你想問一下? – sunysen
呃...什麼?是的,我想問大聲笑... – rockymontana