黑马程序员技术交流社区
标题:
JAVA String的排序
[打印本页]
作者:
hzhzhen
时间:
2015-5-22 23:26
标题:
JAVA String的排序
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[]
请问如何将他们按照字母顺序排序输出?
谢谢!
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2