- File file = new File("C://Temp.txt");
- public static void display(File file)throws Exception{
- BufferedReader br = new BufferedReader(new FileReader(file));
- String line = null;
- TreeMap<String,Integer> tm = new TreeMap<String,Integer>();
- while((line=br.readLine())!=null){
- line.toLowerCase();
- String reg1 = "\\s+";
- String reg2 ="^[a-zA-Z]\\w*";
- String str[] = line.split(reg1);
复制代码
上面代码当中,我已经将文本文件“Temp”中的所有单词利用While循环一次存入了String str[]
请问如何将他们按照字母顺序排序输出?
谢谢! |
|