[JAVA] split을 출력하고 싶을 때
[JAVA] split을 출력하고 싶을 때
String[] parsedFilePath = location.split("/")
System.out.println(parsedFilePath);
// 이상한게 나옴
Arrays.toString(parsedFilePath);
//제대로 나옴
String[] parsedFilePath = location.split("/")
System.out.println(parsedFilePath);
// 이상한게 나옴
Arrays.toString(parsedFilePath);
//제대로 나옴
댓글
댓글 쓰기