Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- duckdb
- 熱海
- 아타미
- CSV
- react.js
- 카마츠루
- codebuild
- javascript
- 뮌헨
- 三井住友カード
- PayPay
- 방콕
- typescript
- 프라하
- terraform
- node.js
- 체코
- JenkinsFile
- pyenv
- 메르페이
- 釜つる
- 태국
- 미츠이 스미토모
- 페이페이
- Python
- documentdb
- PostgreSQL
- vba
- Selenium
- local
Archives
- Today
- Total
도쿄사는 외노자
List to String 본문
Array를 JAVA에서 Oracle Stored Procedure로 보내는 게
현재 상황에서 생각처럼 쉽게 되지 않아서...
그냥 List를 String으로 만들어 프로시저로 보내서
프로시저에서 파싱하는 방법으로 바꾸기로 했다...
일단 List를 String으로 바꾸는 방법은 다음과 같다.
사이사이에 콤마를 넣어야 파싱이 가능하므로, 콤마도 넣었다.
1 2 3 4 | public class JForm { @ValidateIllegal(arg0 = @Arg(key = "明細行", resource = false, position = 0)) public List<String> notJushinList; } | cs |
1 2 3 4 5 6 7 8 9 10 | String notJushinArray = ""; if(JForm.notJushinList.size() > 0){ for (String nj : JForm.notJushinList) { notJushinArray = notJushinArray.concat(nj + ","); } if(notJushinArray.endsWith(",")) { notJushinArray = notJushinArray.substring(0, notJushinArray.length() - 1); } } System.out.println(notJushinArray); | cs |
이후의 진행은 여기를 참조
'Tech > Java' 카테고리의 다른 글
JsonparseException Illegal unquoted character ((CTRL-CHAR, code 10) (0) | 2016.09.05 |
---|---|
Remove an element from a list inside a loop (0) | 2016.07.07 |
get previous year in java (0) | 2016.07.05 |
BigDecimal Divide의 정밀도 설정 문제 (0) | 2016.04.01 |
Convert list to array in Java (0) | 2016.01.13 |