码迷,mamicode.com
首页 > 其他好文 > 详细

22.2

时间:2016-11-11 01:14:55      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:com   while   catch   img   ann   public   todo   key   highlight   

技术分享

import java.io.File;
import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;

public class S22_2 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Map<String,Integer> myMap = new HashMap<String,Integer>();
		File myFile = new File("txt.txt");
		try {
			Scanner input = new Scanner(myFile);
			while(input.hasNext()){
				String str = input.next().toLowerCase();
				if(myMap.get(str) == null){
					myMap.put(str, 1);
				} else {
					int value = myMap.get(str).intValue();
					value++;
					myMap.put(str,value);
				}
			}
		} catch (FileNotFoundException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		Set<Map.Entry<String, Integer>> entrySet = myMap.entrySet();
		
		for(Map.Entry<String, Integer> entry:entrySet)
			System.out.println(entry.getKey() + "\t" +
		entry.getValue());
	}

}

  

22.2

标签:com   while   catch   img   ann   public   todo   key   highlight   

原文地址:http://www.cnblogs.com/wanjiang/p/6052633.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!