其实我的需求很简单,就是向字符串里面传递几个变量。解决方法是使用静态方法String.format ,网上搜的解释看的人头晕,一堆参数比如这个(http://blueram.javaeye.com/blog/441683)。

后来找到官方文档(http://download.oracle.com/javase/tutorial/java/data/strings.html) 找到了简单的答案,搞了这么长时间Java居然没有上过官网,汗一个记下J2SE官网 (http://download.oracle.com/javase/) 还是老外写的简单,我喜欢。

翻译一下是这样的:使用String.format方法可以让你构建一个可格式化的字符串,而不是一次输出的那种。例子如下,一看就懂。

String fs;

fs = String.format("The value of the float variable is %f, while the value of the " + "integer variable is %d, and the string is %s", floatVar, intVar, stringVar);

System.out.println(fs);

如果是打印的话还可以这样。

System.out.printf("The value of the float variable is %f, while the value of the " + "integer variable is %d, and the string is %s", floatVar, intVar, stringVar);