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});