作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的复数字符串设置:
<plurals name="count_video">
<item quantity="other">%동영상 %d개</item>
</plurals>
<plurals name="count_photo">
<item quantity="other">%사진 %d개</item>
</plurals>
我收到以下异常消息:
java.util.UnknownFormatConversionException: Conversion = '사'
at java.util.Formatter$FormatSpecifier.conversion(Formatter.java:2782)
at java.util.Formatter$FormatSpecifier.<init>(Formatter.java:2812)
at java.util.Formatter$FormatSpecifierParser.<init>(Formatter.java:2625)
at java.util.Formatter.parse(Formatter.java:2558)
at java.util.Formatter.format(Formatter.java:2505)
at java.util.Formatter.format(Formatter.java:2459)
at java.lang.String.format(String.java:2870)
我尝试用
%d
替换我的
%s
,但似乎没有任何效果。我很好奇这是否是Android的错误或是否缺少某些东西。
最佳答案
(注意:我完全不懂韩语,所以这就是我说英语的地方。)count_photo
的项的开头是"%사"
。尝试解析%d
或%s
的同一系统会看到此组合,并认为它是格式说明符。我假设您只是希望"%"
字符出现在您的字符串中;这是通过将字符串中的%
加倍来实现的。
<plurals name="count_video">
<item quantity="other">%%동영상 %d개</item>
</plurals>
<plurals name="count_photo">
<item quantity="other">%%사진 %d개</item>
</plurals>
关于java - getQuantityString(id,quantity,formatArgs)不适用于韩文字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62918323/
我有这样的复数字符串设置: %동영상 %d개 %사진 %d개 我收到以下异常消息: java.util.UnknownForma
我有两个字符串资源: Give us feedback at %1$s if you want to make the app even better! info@mycompany.com 我想将
我正在为我的 React Native 项目使用 React Native Firebase。最近我更新了 RNFirebase 和 Pod,现在当我尝试构建应用程序时会出现此错误。 如果我从 Pod
我是一名优秀的程序员,十分优秀!