System.out.printf("%s", new int[]{1, 2, 3})
예:
String.format("%s", new int[]{1, 2, 3});
빠른 수정 적용 후:
String.format("%s", (Object) new int[]{1, 2, 3});