gpt4 book ai didi

Java printf 失败 : UnknownFormatConversionException

转载 作者:行者123 更新时间:2023-12-01 19:01:54 26 4
gpt4 key购买 nike

我试图理解为什么我的 printf 语句之一失败。下面的 #1 很好,但 #2 失败,最后出现异常。这是什么原因造成的?

0       String LOCATION = "http://www.mywebsite.web/";
1 System.out.printf(" <img src=\"%sIMAGE.gif\">", LOCATION);
2 System.out.printf(" <img src=\"%sIMAGE.gif\" width=\"25%\" height=\"25%\" border=0>", LOCATION);

Exception in thread "main" java.util.UnknownFormatConversionException: Conversion = '"'
at java.util.Formatter.checkText(Formatter.java:2519)
at java.util.Formatter.parse(Formatter.java:2501)
at java.util.Formatter.format(Formatter.java:2430)
at java.io.PrintStream.format(PrintStream.java:937)
at java.io.PrintStream.printf(PrintStream.java:838)
at MyCode.main(MyCode.java:292)

你知道是什么原因造成的吗?

最佳答案

给你

String LOCATION = "http://www.mywebsite.web/";
System.out.printf(" <img src='%sIMAGE.gif'>", LOCATION);
System.out.printf(" <img src='%sIMAGE.gif' width='25%%' height='25%%' border=0>", LOCATION);

我已将 " 替换为 ' (看起来简化)将像 中的 charm 一样工作html "'很棒
对于 % ,它应该是 %% 因为 %%

转义

关于Java printf 失败 : UnknownFormatConversionException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11920103/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com