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 |
Tags
- ssh
- import
- Eclipse
- VirtualBox
- 단축키
- find
- xargs
- Quartz
- 네트워크
- plugin
- IntelliJ
- port
- netsh
- context
- maVen
- Mac
- resource
- bash
- grep
- JavaScript
- GIT
- web.xml
- profile
- vscode
- Windows 10
- Windows
- Source
- 줄바꿈 문자
- lsof
- tomcat
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