public class EmployeeDemo { //方法一: public int search(String str,String strRes) {//查找字符串里与指定字符串相同的个数 int n=0;//计数器 // for(int i = 0;i<str.length();i++) { // // } while(str.indexOf(strRes)!=-1) { int i = str.indexOf(strRes); n++; str = str.substring(i+…
有时候我们执行MySQL查询的时候,查询语句没有加order by,但是发现结果总是已经按照id排序好了的,难道MySQL就是为了好看给我们排序 如上图数据,是我查询了语句 SELECT * from employees WHERE first_name like "be%": 看结果是按照emp_no排序,其中first_name上是有索引的. 首先我们需要搞清楚MySQL回表,回表是指在我们利用的索引树(比如上述语句用到的first_name字段索引)的数据不能满足我们select…
Spring controller 如下 @Controller public class SimpleController { @ResponseBody @RequestMapping(value = "/hotel") public String hotel() { return "{\"status\":0,\"errmsg\":null,\"data\":{\"query\":\&quo…
1.使用占位符: 1)float f = 321.12345F;f.ToString("0.00");这样做无论f是不是整数,都将加上2位小数. 2)float f = 321.12345F;f.ToString(".##");这样做最多显示2位小数 占位符的定义如下: (0) Digit placeholder. Display a digit or a zero. If the expression has a digit in the position whe…
String字符串 char类型只能表示一个字符,而String可以表示字符串,也就是一个字符序列.但String不是基本类型,而是一个定义好的类,是一个引用类型.在Java中,可以将字符串直接量赋给String类型变量,也可以采用new String(parameter)的形式来创建字符串. String str = "This is String”; //用字符串直接量赋值String str = new String("Create a String through the Co…
---恢复内容开始--- 1.获取文本:声明别量,指定文本路径,获取文本内容. string Text=System.IO.File.ReadAllText(@"C:\xxx\xxx\xxx\xxx.xxx//文本名称及后缀名"); Console.WriteLine(Text);//输出文本内容 2.将内容写入文本 string txtresult;//定义变量 using (StreamReader sr = new StreamReader(@"c:\users\adm…
Oracle(null等同于空字符'') 1.oracle插入空字符串默认替换成null 2.oracle查询(null和被替换的空字符)时使用 is null/is not null 3.使用聚合函数时自动忽略null值 Mysql(null不等同于空字符'') 1.mysql插入null显示为null,插入空字符串显示空 2.null查询用 is null/is not null,空字符''查询用 =''/<>'' 3.使用聚合函数时自动忽略null值 mapping.xml: <i…