摘要:
mysql 字段 NULL 的比较: 如果字段 age 值是 NULL ,查询 age != 20 查不到 值是 NULL 的记录。 mysql 获取表中随机的5条记录: SELECT * FROM table ORDER BY RAND() LIMIT 5; 设置 字段 utf8mb4 : ALT 阅读全文
摘要:
public static void main(String[] args) { double priceWithFreight = 1200.5698d; System.out.println(priceWithFreight); //double转string 超过1000小数点会变成逗号的bu 阅读全文
摘要:
package demo; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.StringReader; import java.util.Date; import javax.xml.parsers.DocumentBuilder; import ... 阅读全文
摘要:
mvn install:install-file -Dfile=E:\temp\catV1\cat-client\trunk\CAT_v1.1.1\cat-consumer\target\cat-consumer-1.3.6.jar -DgroupId=com.dianping.cat -Darti 阅读全文
摘要:
List<CustomerService> customerlist = customerService.selectByExample(customerexample); //如果在customer_service 表有用户的信息,则返回提示 System.out.println("cus:" + 阅读全文
摘要:
在java中存入一个map: Map root = new HashMap(); root.put("user", "老周"); 模板文件,在指令中直接用key,在页面显示中,则要用EL表达式获取key的值 : root.put("random",new Random().nextInt(100)) 阅读全文
摘要:
导入jdom 包。 一:xml文件 test.xml 的内容: 输出: 磁盘信息:分区盘符:C分区容量:8G目录数:200文件数:1580 磁盘信息:分区盘符:D分区容量:10G目录数:500文件数:3000 二:解析传入的xml格式的字符串: 阅读全文
摘要:
在mysql 中 text类型的字段: service_detail text NULL 服务描述 。 对应java文件中 model 中的 String: private String serviceDetail; 在 mybatis 中的xml 中定义的是 : <resultMap id="Re 阅读全文
摘要:
1、强制类型转换是子类型转换成父类型。 Object a = 10; // a 是Integer类型。 String s = (String)a; // 报错: java.lang.ClassCastException: java.lang.Integer cannot be cast to jav 阅读全文
摘要:
表 service_goods_base 字段如下: 传入的json 字符串: servicePictureArray : [{"picServiceUrl": "http://qimg.app.yiguanjiaclub.org/20180308/a48210dc7bfe4b34b3d7de114 阅读全文