摘要:
原文:https://blog.csdn.net/hu_mouse/article/details/47972271 阅读全文
摘要:
var a = xxxxxxxx; if(typeof a == "number") { //a是数 } else if(typeof a == "string") { //a是字符串 } else if(typeof a == "undefined") { //a是未定义 } else if(typeof a == "boolean") { //a是bool变量... 阅读全文
摘要:
1,字符串中是否包含 2,数组中是否包含 阅读全文
摘要:
Map map = (Map) JSONUtils.parse(result) 阅读全文
摘要:
一,准备 1,先查看Linux是32位还是64位 getconf LONG_BIT 如果返回的是32,那么就是32位 如果返回的是64,那么就是64位 2,如果服务器不能联网,就先去官网下载好压缩包,然后上传到服务器 下载地址:https://dev.mysql.com/downloads/mysq 阅读全文