黑马程序员技术交流社区

标题: JAVA String的排序 [打印本页]

作者: hzhzhen    时间: 2015-5-22 23:26
标题: JAVA String的排序
  1. File file = new File("C://Temp.txt");
  2. public static void display(File file)throws Exception{
  3.         BufferedReader br = new BufferedReader(new FileReader(file));
  4.         String line = null;
  5.         TreeMap<String,Integer> tm = new TreeMap<String,Integer>();
  6.         while((line=br.readLine())!=null){
  7.             line.toLowerCase();
  8.             String reg1 = "\\s+";
  9.             String reg2 ="^[a-zA-Z]\\w*";
  10.             String str[] = line.split(reg1);
复制代码

上面代码当中,我已经将文本文件“Temp”中的所有单词利用While循环一次存入了String str[]
请问如何将他们按照字母顺序排序输出?
谢谢!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2