Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Quartz
- Source
- port
- xargs
- import
- context
- Windows
- 줄바꿈 문자
- vscode
- 네트워크
- profile
- maVen
- resource
- Mac
- IntelliJ
- lsof
- VirtualBox
- GIT
- netsh
- plugin
- grep
- ssh
- JavaScript
- tomcat
- 단축키
- Eclipse
- find
- web.xml
- bash
- Windows 10
Archives
- Today
- Total
develog
generate file name 본문
private String generate() {
int len = 6;
int rnum = (int) Math.floor(Math.random() * Math.pow(10, len));
StringBuffer sb = new StringBuffer(String.valueOf(rnum));
while (sb.toString().length() < len) {
sb.append("0");
}
return System.currentTimeMillis() + "_" + sb.toString();
}
'Dev > Java' 카테고리의 다른 글
callback (0) | 2013.07.09 |
---|---|
[java] 배열내 중복 체크 (0) | 2013.07.02 |
String 비교 (0) | 2013.07.02 |
Object.toString(), System.identityHashCode() (0) | 2013.07.02 |
진수 변환 (0) | 2013.07.02 |
Comments