2015-09-15 136 views

回答

3

你需要逃避.

Scanner input = new Scanner("12.23.45"); 
input.useDelimiter("\\."); 
while (input.hasNextInt()) { 
    System.out.println(input.nextInt()); 
} 
相關問題