검색결과 리스트
랜덤숫자에 해당되는 글 1건
- 2011.12.08 Random키 생성
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
휴대폰 인증번호를 랜덤하게 생성해야 하는 경우가 생겨서 아래와 같이 만들었다.
[Servlet]
public static String getRandomKey(int len)
{
int nSeed = 0;
int nSeedSize = 10;
String strSrc = "0123456789";
String strKey = "";
for(int i=0; i<len; i++)
{
nSeed = (int)(Math.random() * nSeedSize) + 1);
strKey += String.valueOf(strSrc.charAt(nSeed-1));
}
return strKey;
}
[JSP]
getRandomKey(4); // 4자리 랜덤키
만약 영문과 숫자의 조합의 키를 만들기 위해서는 strSrc에 영문을 포함시키고, 자리 수만큼 nSeedSize를 늘려주면 되므로 랜덤키를 만들때 유연한 구조라 생각한다.
[Servlet]
public static String getRandomKey(int len)
{
int nSeed = 0;
int nSeedSize = 10;
String strSrc = "0123456789";
String strKey = "";
for(int i=0; i<len; i++)
{
nSeed = (int)(Math.random() * nSeedSize) + 1);
strKey += String.valueOf(strSrc.charAt(nSeed-1));
}
return strKey;
}
[JSP]
getRandomKey(4); // 4자리 랜덤키
만약 영문과 숫자의 조합의 키를 만들기 위해서는 strSrc에 영문을 포함시키고, 자리 수만큼 nSeedSize를 늘려주면 되므로 랜덤키를 만들때 유연한 구조라 생각한다.
'-- JSP, SPRING' 카테고리의 다른 글
Eclipse에서javax.servlet.http.HttpServetRequest cannot be resolved 에러해결법 (0) | 2012.08.06 |
---|---|
JSP에서 파일 생성 후 파일 다운로드 (0) | 2011.12.08 |
jsp upload처리 (0) | 2011.11.28 |
JSP Transaction 처리 (setAutoCommit) (0) | 2011.11.28 |
Servlet 사용 시 Static으로 사용하기 (0) | 2011.11.17 |
RECENT COMMENT