Java中的Sprintf等效项

Printf在1.5版本中添加到Java中,但是我似乎找不到如何将输出发送到字符串而不是文件的方法(这是sprintf在C语言中的作用)。有谁知道如何做到这一点?

回答:

// Store the formatted string in 'result'

String result = String.format("%4d", i * j);

// Write the result to standard output

System.out.println( result );

查看格式及其语法

以上是 Java中的Sprintf等效项 的全部内容, 来源链接: utcz.com/qa/403491.html

回到顶部