• int 형을 int[] 배열에

  • String 형을 String[]에 담는 예제



// int to int[]
int number = 12345;
int[] digits = Stream.of(String.valueOf(number).split(""))
.mapToInt(Integer::parseInt).toArray();

System.out.println( Arrays.toString(digits)); // [1, 2, 3, 4, 5]


// String to String[]
String word = "hello world";
String[] wordArr = new String[word.length()];
wordArr = word.split("");               // [h, e, l, l, o, , w, o, r, l, d]

'DEV > JAVA' 카테고리의 다른 글

java LinkedList 와 Iterator  (0) 2019.10.04
java 현재시간 출력 ( Calendar, SimpleDateFormat )  (0) 2019.10.04
[Java] 객체직렬화(serializable) 사용이유와 개념  (0) 2019.05.16
[Java] 메모리 구조  (0) 2019.05.06
java.util 패키지  (0) 2019.05.03

+ Recent posts