String 문자열 배열 할당.
String temp[] = null; temp = {"aaa", "bbb", "ccc"};
Java
2014. 10. 29. 11:16
HTML 오브젝트 비활성화하기.
disabled="disabled"
Web/HTML
2014. 10. 20. 12:02
[POI] 셀 타입 알아내기.
cell.getCellType(); - Cell.class - public static final int CELL_TYPE_NUMERIC = 0; public static final int CELL_TYPE_STRING = 1; public static final int CELL_TYPE_FORMULA = 2; public static final int CELL_TYPE_BLANK = 3; public static final int CELL_TYPE_BOOLEAN = 4; public static final int CELL_TYPE_ERROR = 5;
Java/POI
2014. 9. 22. 18:35