Java中有类似sprintf的方法吗?
Java中有类似sprintf的方法吗?
Any similar method to sprintf in Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Java中有类似sprintf的方法吗?
Any similar method to sprintf in Java?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
在某种程度上,String.format 就像这里有一个 Java sprintf 方法,
您可以看到 示例也在这里
In a way the String.format is like having a Java sprintf method available here
You can see the example here as well
您正在寻找
字符串.format
。You're looking for
String.format
.复杂的方法(使用Formatter)
或更简单的方法:
Complicated way (using Formatter)
Or simpler way:
是: Java 格式化打印(sprintf)
Yes: Formatted Printing for Java (sprintf)
查看 Formatter 类和 Javadoc:
http:// /download.oracle.com/javase/6/docs/api/java/util/Formatter.html
Have a look at the Formatter classs and Javadoc:
http://download.oracle.com/javase/6/docs/api/java/util/Formatter.html
显然,对无符号数字数据的非理性偏见也延伸到了这一点。支持的集中明显缺少 %u 格式元素。
Apparently the irrational prejudice against unsigned numeric data extends to this as well. The %u format element is conspicuously absent from the supported set.