java.util.MissingFormatArgumentException: Format specifier '%s'

java.util.MissingFormatArgumentException: Format specifier '%s'
    at java.util.Formatter.format(Formatter.java:2487)
    at java.util.Formatter.format(Formatter.java:2423)
    at java.lang.String.format(String.java:2790)

根据这个异常,你根本找不到异常的具体位置,

但是这个异常是因为你在使用%s进行拼接字符串跳转地址的时候,需要传一个参数,但是你传了两个,或者,就是需要两个参数,你只传过去一个,所以才会有这样的异常

原文地址:https://www.cnblogs.com/qingmuchuanqi48/p/11528905.html
原文地址:https://www.cnblogs.com/jpfss/p/11647808.html