import org.slf4j.helpers.MessageFormatter;
public class Test{
private static final String TITLE_UTL = "https://channel//wupr?contentId={}&pha_manifest={}";
public static void main(String[] args) {
Long contentId = 123L;
String message = MessageFormatter.format(TITLE_UTL, contentId,"channelPage1").getMessage();
System.out.println(message);
}
//打印结果:https://channel//wupr?contentId=123&pha_manifest=channelPage
}