티스토리 뷰
잘되네..^^
public static void main(String[] args) {
try {
BufferedReader br = new BufferedReader(new FileReader(new File("C:/Users/user/Documents/var_input.sql")));
BufferedWriter bw = new BufferedWriter(new FileWriter(new File("C:/Users/user/Documents/var_output.sql")));
String oneLine;
while((oneLine = br.readLine()) != null) {
String result = changeVariable(oneLine).toString();
result = changeFirstChar(result);
bw.write(result + "\r\n");
bw.flush();
}
bw.close();
br.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public static StringBuffer changeVariable(String word) {
StringBuffer sb = new StringBuffer();
for (String s: word.split("_")) {
sb.append(Character.toUpperCase(s.charAt(0)));
if (s.length() > 1) {
sb.append(s.substring(1, s.length()).toLowerCase());
}
}
return sb;
}
public static String changeFirstChar(String word) {
return word.substring(0, 1).toLowerCase() + word.substring(1);
}
'Skill > spring' 카테고리의 다른 글
[mybatis] <include>에 parameter 넘기기 (0) | 2020.12.08 |
---|---|
[spring] Controller 메소드 리턴타입 정리 (0) | 2020.12.08 |
[spring] build시 에러 No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? (0) | 2020.11.11 |
[spring] 파일 업로드 (0) | 2020.11.05 |
저장,삭제 한번에 하는 controller (0) | 2020.11.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- object key
- 여러 컬럼 update
- 프로젝트명변경
- Keycode
- setter
- lombok
- $.extend
- QueryDSL
- PostgreSQL
- draw.io
- getter
- ul li로 테이블
- Javascript
- oracle
- 전후방탐색
- JQuery
- caniuse
- sumifs
- border-collapse
- 진열사랑
- DatePicker
- devtools
- excel
- spring
- springboot
- 정규식
- @ExceptionHandler
- CSS
- $.each
- element위치
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함