문자열 을 Integer,Long,Date(dateFormat)등 형식 으로 변환 합 니 다.
8385 단어 자바
문자열 을 Integer 로 변환:
public static Integer stringToInteger(String string){
if(!StringUtils.isEmpty(string)){
return Integer.parseInt(string);
}else{
return null;
}
}
문자열 을 Long 으로 변환:
public static Long stringToLong(String string){
if(!StringUtils.isEmpty(string)){
return Long.parseLong(string);
}else{
return null;
}
}
문자열 을 Date 로 변환:
public static SimpleDateFormat simpleDateFormat
=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public static Date stringToDate(String string){
if(!StringUtils.isEmpty(string)){
Date date = null;
try {
date = simpleDateFormat.parse(string);
} catch (ParseException e) {
e.printStackTrace();
//
}
return date;
}else{
return null;
}
}
어떤 때 는 데이터 베 이 스 를 롱 형식 으로 저장 하지만 밀리초 계수 법 도 아 닙 니 다.년 월 일 시 분 초 밀리초 의 롱 꼬치 입 니 다.여기 서도 전환 방법 을 말씀 드 리 겠 습 니 다.
// "2008-01-01 12:00:00" 20080101120000999 long
public static Long stringToDateLong(String string){
if(!StringUtils.isEmpty(string)){
Long dateLong = null;
try {
Date date = simpleDateFormat.parse(string);
String format = longSimpleDateFormat.format(date);
dateLong = Long.parseLong(format);
} catch (ParseException e) {
e.printStackTrace();
//
}
return dateLong;
}else{
return null;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.