SQL语句中的变量
1. String sql = "select * from k_user where userno='" + userno + "' and pwd='" + pwd + "'";
2. String sql = "select * from k_user where userno=? and pwd=?";
第一种方法 “+变量+”
第二种方法 ?占位符
控制台输出占位符
第一种:使用%s占位,使用String.format转换
public class Test {
public static void main(String[] args) {
String url = "我叫%s,今年%s岁。";
String name = "小明";
String age = "28";
url = String.format(url,name,age);
System.out.println(url);
}
}
控制台输出:
我叫小明,年28岁。
第二种:使用{1}占位,使用MessageFormat.format转换
public class Test {
public static void main(String[] args) {
String url02 = "我叫{0},今年{1}岁。";
String name = "小明";
String age = "28";
url02 = MessageFormat.format(url02,name,age);
System.out.println(url02);
}
}
控制台输出:
我叫小明,今年28岁。