实际工作中经常会使用字符串模板生成简单字符串的需要,使用String.format这种方式要求比较严格比如%d就要求参数必须是整数类型,使用浮点数就会报异常。而对于简单的字符串拼接推荐使用log4j,因为log4j项目中一般都会引入,格式如下:
import org.apache.logging.log4j.message.Message;
import org.apache.logging.log4j.message.ParameterizedMessageFactory;
/**
* @author pangtaitao create on 2020/5/31
*/
public class LoggerMessageTest {
public static void main (String[] args) {
Message message = new ParameterizedMessageFactory().newMessage("this is my test:{},{}", 100, "aaa");
System.out.println(message.getFormat());
System.out.println(message.getFormattedMessage());
}
}
输出结果:
this is my test:{},{}
this is my test:100,aaa