|
|
@ -1,5 +1,7 @@
|
|
|
|
package cokr.xit.foundation.data;
|
|
|
|
package cokr.xit.foundation.data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.text.DecimalFormat;
|
|
|
|
|
|
|
|
|
|
|
|
import cokr.xit.foundation.AbstractComponent;
|
|
|
|
import cokr.xit.foundation.AbstractComponent;
|
|
|
|
|
|
|
|
|
|
|
|
public class DataFormat extends AbstractComponent {
|
|
|
|
public class DataFormat extends AbstractComponent {
|
|
|
@ -76,4 +78,35 @@ public class DataFormat extends AbstractComponent {
|
|
|
|
return str;
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static final DecimalFormat numberFormat = new DecimalFormat("#,##0.00");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**주어진 문자나 숫자를 #,##0.00 형식으로 포맷하여 반환한다.
|
|
|
|
|
|
|
|
* @param obj 문자 또는 숫자
|
|
|
|
|
|
|
|
* @return #,##0.00 형식의 문자열
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static final String n_nn0_2(Object obj) {
|
|
|
|
|
|
|
|
Number num = null;
|
|
|
|
|
|
|
|
if (obj == null)
|
|
|
|
|
|
|
|
num = 0;
|
|
|
|
|
|
|
|
else if (obj instanceof String)
|
|
|
|
|
|
|
|
num = Double.valueOf((String)obj);
|
|
|
|
|
|
|
|
else if (obj instanceof Number)
|
|
|
|
|
|
|
|
num = (Number)obj;
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
throw new IllegalArgumentException(obj + " is not a number");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return numberFormat.format(num);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**주어진 문자나 숫자를 #,##0 형식으로 포맷하여 반환한다.
|
|
|
|
|
|
|
|
* @param obj 문자 또는 숫자
|
|
|
|
|
|
|
|
* @return #,##0 형식의 문자열
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
public static final String n_nn0(Object obj) {
|
|
|
|
|
|
|
|
String str = n_nn0_2(obj);
|
|
|
|
|
|
|
|
int pos = str.indexOf(".");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return pos < 0 ? str : str.substring(0, pos);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|