1. StringTokenizer:
字符串分割类:
public class TestALL {
public static void main(String[] args) {
System.out.println("默认以空格,\\t,\\r,\\n分割");
StringTokenizer st = new StringTokenizer("www ooobj com");
while(st.hasMoreElements()){
System.out.println("Token:" + st.nextToken());
}
System.out.println("指定以.分割");
st = new StringTokenizer("www.ooobj.com",".");
while(st.hasMoreElements()){
System.out.println("Token:" + st.nextToken());
}
System.out.println("指定以.分割,并在结果中包含分隔符");
st = new StringTokenizer("www.ooobj.com",".",true);
while(st.hasMoreElements()){
System.out.println("Token:" + st.nextToken());
}
}
}
输出:
默认以空格,\t,\r,\n分割
Token:www
Token:ooobj
Token:com
指定以.分割
Token:www
Token:ooobj
Token:com
指定以.分割,并在结果中包含分隔符
Token:www
Token:.
Token:ooobj
Token:.
Token:com
2. DateFormat:
想必大家对SimpleDateFormat并不陌生。SimpleDateFormat 是 Java 中一个非常常用的类,该类用来对日期字符串进行解析和格式化输出,但如果使用不小心会导致非常微妙和难以调试的问题,因为 DateFormat 和 SimpleDateFormat 类不都是线程安全的,在多线程环境下调用 format() 和 parse() 方法应该使用同步代码来避免问题。
最好的方法,使用ThreadLocal:
package com.peidasoft.dateformat;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class ConcurrentDateUtil {
private static ThreadLocal<DateFormat> threadLocal = new ThreadLocal<DateFormat>() {
@Override
protected DateFormat initialValue() {
return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
}
};
public static Date parse(String dateStr) throws ParseException {
return threadLocal.get().parse(dateStr);
}
public static String format(Date date) {
return threadLocal.get().format(date);
}
}
3. Java获取路径:
public String getCurrentPath(){
//取得根目录路径
String rootPath=getClass().getResource("/").getFile().toString();
//当前目录路径
String currentPath1=getClass().getResource(".").getFile().toString();
String currentPath2=getClass().getResource("").getFile().toString();
//当前目录的上级目录路径
String parentPath=getClass().getResource("../").getFile().toString();
return rootPath;
}
4. 线程安全结合类:
Collection 是对象集合, Collection 有两个子接口 List 和 Set
List 可以通过下标 (1,2..) 来取得值,值可以重复,而 Set 只能通过游标来取值,并且值是不能重复的
ArrayList , Vector , LinkedList 是 List 的实现类
ArrayList 是线程不安全的, Vector 是线程安全的,这两个类底层都是由数组实现的
LinkedList 是线程不安全的,底层是由链表实现的
Map 是键值对集合
HashTable 和 HashMap 是 Map 的实现类
HashTable 是线程安全的,不能存储 null 值
HashMap 不是线程安全的,可以存储 null 值