摘要:
windows cmd窗口无法显示中文,不一定数据库中存储的就是乱码——多数情况只是显示问题,可以通过以下方式解决:1、退出dos 或者重新开启在CMD窗口,输下:chcp 65001 然后回车确定 注:65001 是Unicode (UTF-8) 65001 的编码。2、在命令行标题栏上点击右键... 阅读全文
摘要:
问题描述: The container 'Maven Dependencies' references non existing library '${groupid}/${artifactid}-${version}.jar'解决方案:上面问题往往是在下载依赖过程中网络出现问题导致的。此时我们本... 阅读全文
摘要:
问题描述:maven项目出现如下错误JavaServer Faces 2.0 requires Dynamic Web Module 2.5 or newer..Maven Java EE Configuration ProblemJavaServer Faces 2.0 can not be in... 阅读全文
摘要:
num = "1" #unicodenum.isdigit() # Truenum.isdecimal() # Truenum.isnumeric() # Truenum = "1" # 全角num.isdigit() # Truenum.isdecimal() # Truenum.isn... 阅读全文
摘要:
UI元素拖动 阅读全文
摘要:
1.下面列出了一些判读数值类型的正则表达式 "^\\d+$" //非负整数(正整数 + 0) "^[0-9]*[1-9][0-9]*$" //正整数 "^((-\\d+)|(0+))$" //非正整数(负整数 + 0) "^-[0-9]*[1-9][0-9]*$" //负整数 "^-?\\d+$" //整数 "^\\d+(\\.\\d+)?$" //非负浮点数(正浮点数 + 0) "^(([0-9]+\\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\\.[0-9]+)|([0-9]*[1-9][0-9]*))$" //正浮点数 "^((-\\d 阅读全文