admin管理员组

文章数量:1641888

private static final String urlBookList = "http://channel.huaxi/standard/NovelService.ashx?action=list&identity={identity}&token={token}";


String url = urlBookList.replace("{identity}", "替换字符").replace("{token}","替换字符");

 

//使用  format替换

String.format("action=%s&bookId=%s&identity=%s%s", "第一个%s替换的值", “第二个%s替换的值”, "第三个%s替换的值",

”第四个%s替换的值“);   

 

%s表示字符串       %d表示数值类型

本文标签: 字符串优雅