package cn.edu.bjut.chapter6; import java.util.HashMap; import java.util.Map; public class WordCounterTester2 { public static void main(String[] args) { Map map = new HashMap(); String[] ids = { "000089219800222", "000088691000018", "000166992000025" }; String[] titles = { "Liposomal doxorubicin in the palliative treatment of head and neck cancer", "The long-term complications of chemotherapy in childhood genitourinary tumors", "Adenovirus-mediated tumor suppressor p53 gene therapy for anaplastic thyroid carcinoma in vitro and in vivo" }; for (int i = 0; i < ids.length; i++) { WordCounter counter = new WordCounter(titles[i].toLowerCase().split("\\s+")); counter.count(); map.put(ids[i], counter); } for (Map.Entry entry : map.entrySet()) { System.out.println(entry.getKey()); System.out.println(entry.getValue()); } } }