Java基础点滴记录

1、在Java正则表达式中点号(.)可以代表一个中文字符;

2、Collections.sort()使用-返回负数值的对象排在前面,正值在后面:

public static void main(String[] args){
List<Integer> list = new ArrayList<Integer>();
    list.add(2);
    list.add(1);
    list.add(0);
    list.add(3);
    Collections.sort(list, new Comparator<Integer>(){
        @Override
        public int compare(Integer o1, Integer o2) {
            if(o1.intValue() >o2.intValue()){
                return 1;
            }
            if(o1.intValue() < o2.intValue()){
                return -1;
            }
            return 0;
        }
    });
    System.out.println(list);
}
结果:[0, 1, 2, 3]

3、如何将System.out.println()打印输出到指定的文件中,如下:

public static void main(String[] args) {
 try{
            PrintStream ps = new PrintStream("D:/log.txt");
            System.setOut(ps);
            System.out.println("print log to file");
        }catch(FileNotFoundException e){
            e.printStackTrace();
        }
 new Thread(new Runnable() {
 public void run() {
 System.out.println("I am thread log");
 }
 }).start();
}

  说明:System类的out属性是全局静态变量,使得整个系统都会写入该文件,即使在其它线程里的打印;

         public final static PrintStream out = nullPrintStream();

4、关于Map的排序

(1)、对Map的键进行排序的方法,  可以使用TreeMap的数据结构,传递一个比较器给其构造函数:

    TreeMap(Comparator<? super K> comparator) 
          构造一个新的、空的树映射,该映射根据给定比较器进行排序。

(2)、对Map的值进行排序,先将其转成List对象后再排序,如下:   

Map<String,Integer>  countMap=new HashMap<String,Integer>();
for(String s:readLine){
String[] split = s.split("modelName");
String r = "modelName"+split[1];
Integer integer = countMap.get(r);
countMap.put(r, (integer==null?1:integer+1));
}
List<Entry<String, Integer>> entrySet = new ArrayList<Map.Entry<String,Integer>>(countMap.entrySet());
Collections.sort(entrySet,new Comparator<Entry<String, Integer>>() {
public int compare(Entry<String, Integer> o1, Entry<String, Integer> o2) {
if(o1.getValue() > o2.getValue()){
return -1;
}
if(o1.getValue()<o2.getValue()){
return 1;
}
return 0;
}
});


4、如何使用命令行编译执行java文件,依赖包的使用:

(1)编译

(2)执行:

你可能感兴趣的:(Java基础点滴记录)