public boolean isBottom(String msg) {
//////////////////마지막 글자의 받침 유무 구하는 로직///////////////////
boolean isBottom = false;
int word = (int)msg.charAt(msg.length()-1);
//한글 '가'의 정수값 = 44032 ( 받침의 갯수 28로 나누면 나머지는 16 )
for(int i=0xAC00; i<0xD7A3; i++) {
if(word%28==16) {
isBottom = true;
break;
}
}
return isBottom;
/////////////////////////////////////////////////////////////////////////
}
// 날짜 형식 변환
public String dateToString() {
Date date = new Date();
String changeType = "yyyy-MM-dd, hh:mm:ss";
SimpleDateFormat simpleFormat = new SimpleDateFormat(changeType);
return simpleFormat.format(date.getTime());
}