最近我們主管給我布置了一個任務,讓我做一個目錄類,單位其他同事誰用到就直接調用就可以了。但是現在我一點頭緒都沒有,不知道咋下手。
首先有個根目錄/surfs,根目錄下面有ABCD四個子目錄,分別點擊ABCD四個目錄時要進行判斷是否初始化,如果已經初始化,會生成16個子目錄,子目錄也同樣這麼判斷。每個目錄都有一個唯一的ID,通過UUID獲取。根目錄和子目錄的關系是 比如根目錄是abcdefg,那麼他下面的目錄依次是abcdefg/cdefg/efg/g,我沒喲太多思路。,大神們給點提示就成 多謝了
public static String[] chars = new String[] { "a", "b", "c", "d", "e", "f",
"g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
"t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5",
"6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H", "I",
"J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V",
"W", "X", "Y", "Z" };
public static String generateShortUuid() {
StringBuffer shortBuffer = new StringBuffer();
String uuid = UUID.randomUUID().toString().replace("-", "");
for (int i = 0; i < 12; i++) {
String str = uuid.substring(i * 3, i * 3 + 3);
int x = Integer.parseInt(str, 16);
shortBuffer.append(chars[x % 0x3E]);
}
return shortBuffer.toString();
}