|
|
|
@ -9,7 +9,6 @@ import java.nio.file.Files;
|
|
|
|
|
import java.nio.file.Path;
|
|
|
|
|
import java.nio.file.Paths;
|
|
|
|
|
import java.nio.file.StandardCopyOption;
|
|
|
|
|
import java.text.DecimalFormat;
|
|
|
|
|
import java.text.SimpleDateFormat;
|
|
|
|
|
import java.time.DayOfWeek;
|
|
|
|
|
import java.time.LocalDate;
|
|
|
|
@ -333,16 +332,6 @@ public class CmmnUtil {
|
|
|
|
|
return dow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**'-'와 ':'로 구분된 날짜(yyyy-MM-dd hh:mm:ss)를 반환한다.
|
|
|
|
|
* @param dateStr '-',':'이 없는 날짜
|
|
|
|
|
* @return '-'와 ':'로로 구분된 날짜
|
|
|
|
|
*/
|
|
|
|
|
public static String yyyy_mm_dd_hh_mm_ss(String dateStr) {
|
|
|
|
|
if (dateStr == null || dateStr.equals("")) return "";
|
|
|
|
|
|
|
|
|
|
return dateStr.substring(0, 4) + "-" + dateStr.substring(4, 6) + "-" + dateStr.substring(6, 8)
|
|
|
|
|
+ " " + dateStr.substring(8, 10) + ":" + dateStr.substring(10, 12) + ":" + dateStr.substring(12, 14);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String dateNFormat(String dateStr, String pattern) {
|
|
|
|
|
if(dateStr.length() == 8) {
|
|
|
|
@ -372,22 +361,6 @@ public class CmmnUtil {
|
|
|
|
|
return dataFormats.format(pattern, date);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 숫자형 문자열에 세자리 마다 콤마를 찍어 반환한다.
|
|
|
|
|
* @param str 숫자형 문자열
|
|
|
|
|
* @return 콤마가 표시된 숫자형 문자열
|
|
|
|
|
*/
|
|
|
|
|
public static String addCommaToNumber(String str) {
|
|
|
|
|
if (str == null || str.equals("")) return "";
|
|
|
|
|
|
|
|
|
|
int number = Integer.parseInt(str);
|
|
|
|
|
DecimalFormat decFormat = new DecimalFormat("###,###");
|
|
|
|
|
return decFormat.format(number);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String addCommaToNumber(int number) {
|
|
|
|
|
DecimalFormat decFormat = new DecimalFormat("###,###");
|
|
|
|
|
return decFormat.format(number);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 숫자를 한글로 표시한다.
|
|
|
|
|
* @param number
|
|
|
|
|