我有一个任务是从我的教科书中修改一个程序。该程序从用户那里获取一个输入字符串,然后以输入的字数作为响应。我的任务是将其更改为进行字符计数而不是字数计数。我的工作正常,但是当我使用 .split 对字符进行标记时,我在数组中得到了一个前导空格,有人可以解释为什么吗?
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;
/**
*
* @author Frank
*/
public class LetterCounting
{
public static void main( String[] args )
{
// create HashMap to store String keys and Integer values
Map< String, Integer > myMap = new HashMap< String, Integer >();
createMap( myMap ); // create map based on user input
displayMap( myMap ); // display map content
} // end main
// create map from user input
private static void createMap( Map< String, Integer > map )
{
Scanner scanner = new Scanner( System.in ); // create scanner
System.out.println( "Enter a string:" ); // prompt for user input
String input = scanner.nextLine();
// tokenize the input
String letters = input.replaceAll("\\s", "");
String[] tokens = letters.split( "" );
// processing input text
for ( String token : tokens )
{
String word = token.toLowerCase(); // get lowercase word
// if the map contains the word
if ( map.containsKey( word ) ) // is word in map
{
int count = map.get( word ); // get current count
map.put( word, count + 1 ); // increment count
} // end if
else
map.put( word, 1 ); // add new word with a count of 1 to map
} // end for
} // end method createMap
// display map content
private static void displayMap( Map< String, Integer > map )
{
Set< String > keys = map.keySet(); // get keys
// sort keys
TreeSet< String > sortedKeys = new TreeSet< String >( keys );
System.out.println( "\nMap contains:\nKey\t\tValue" );
// generate output for each key in map
for ( String key : sortedKeys )
System.out.printf( "%-10s%10s\n", key, map.get( key ) );
System.out.printf(
"\nsize: %d\nisEmpty: %b\n", map.size(), map.isEmpty() );
} // end method displayMap
} // end class WordTypeCount
我有来自 netbeans 的 dubug 数据的屏幕截图,但我没有足够的声誉来发布它。如果有人想看,请告诉我,我可以发给你。
提前感谢您的意见。
坦率