2024年10月17日 / 1 min read Android String.format 异常 bug 这是最近修改代码时,发现的bug。 String.format("1~19%test") 上述代码中的%t会被String.format所识别为格式化字符串。 在不修改API返回的情况下,使用下述的StringUtil.format替换系统的String.format。 class StringUtil { /* * Returns a formatted string using the specified format string and arguments. * In order to avoid call String.format causes an ConvertException (25%ア) * eg: StringUtil.format("test%arg0test%arg1test", "AAA", "BBB") // testAAAtestBBBtest * */ public static String format(String format, Object... args) { for (int i = 0; i < args.length; i++) { format = format.replace("%arg" + i, args[i].toString()); } return format; } }