Commit 28eb5de781130a3c0fb590b8dd3ead288affcf84
1 parent
51b78cc6
1
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
src/main/java/com/batch/util/FileUtil.java
... | ... | @@ -66,6 +66,9 @@ public class FileUtil { |
66 | 66 | sb.insert(0, c); |
67 | 67 | } |
68 | 68 | |
69 | + /*** TODO : 필요 시 파일 인코딩. utf-8 **/ | |
70 | +// sb = new StringBuffer(new String((sb.toString()).getBytes("ISO-8859-1"), "UTF-8")); | |
71 | + | |
69 | 72 | } catch (Exception e) { |
70 | 73 | // e.printStackTrace(); |
71 | 74 | sb = new StringBuffer("유효한 파일경로가 아닙니다.("+resourceName+")"); | ... | ... |