일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- ibsheet
- Android
- Google Map
- MFC
- JDOM
- WebLogic
- iBATIS
- jQuery
- JSON
- PLSQL
- 전자정부프레임워크
- swingx
- sencha touch
- jsr 296
- oracle
- rowspan
- Ajax
- 가우스
- Struts
- GPS
- node.js
- PHP
- MySQL
- phonegap
- 선택적조인
- tomcat
- appspresso
- dock
- Eclipse
- Spring
Archives
- Today
- Total
Where The Streets Have No Name
Use System time to generate unique ID 본문
public class UniqueID {
static long current= System.currentTimeMillis();
static public synchronized long get(){
return current++;
}
}