摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>单词提取工具</title> <link rel="shortcut icon" href="提取.ico" type="image/x-icon" /> <s 阅读全文
posted @ 2020-12-23 00:42 小庄的blog 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 安装: 下载:(官网)https://www.oracle.com/cn/database/technologies/microsoft-windows.html 注意要下载这两个文件,且解压同一个文件夹中,即合并它们的database文件夹,合并完后,点击进入安装。 为了更好地了解安装流程,请前往 阅读全文
posted @ 2020-12-19 19:17 小庄的blog 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 以所在项目为例: File file1 = new File(request.getSession().getServletContext().getRealPath("/")+"file"); if(! file1.exists()){ file1.mkdirs(); } request.getS 阅读全文
posted @ 2020-12-18 18:16 小庄的blog 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 需要javax.annotation.jar 到https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api 下载指定jar导入 阅读全文
posted @ 2020-12-14 11:20 小庄的blog 阅读(1050) 评论(0) 推荐(0) 编辑
摘要: 在url中添加: ...?useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false&amp;serverTimezone=UTC&amp;rewriteBatchedStatements=true 感谢:https://blog.csdn 阅读全文
posted @ 2020-12-11 12:32 小庄的blog 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-07 21:18 小庄的blog 阅读(73) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>禁用浏览器CTRL+S默认事件</title> </head> <body> <script> // 监听键盘按下事件 document.onkeydown = function( 阅读全文
posted @ 2020-12-02 10:39 小庄的blog 阅读(644) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var weight=prompt("请输入你体重(公斤)~"); var height=prompt("请输入你的身高(米)~"); getLast(weight,height); function getLast(weight,he 阅读全文
posted @ 2020-12-02 09:18 小庄的blog 阅读(521) 评论(0) 推荐(0) 编辑
摘要: " g "是全局即全部字符串,而如果想要多行匹配(有多行效果)就要再加" m ",如果想要忽略大小写再加” i “。 多行效果的作用: m修饰符的作用是修改^和$在正则表达式中的作用,让它们分别表示行首和行尾。在默认状态下,一个字符串无论是否换行只有一个开始^和结尾$,如果采用多行匹配,那么每一个行 阅读全文
posted @ 2020-11-29 10:16 小庄的blog 阅读(752) 评论(0) 推荐(0) 编辑
摘要: function MyindexOf(str,e){//第一个参数是字符串,第二个参数是要查找字符串 var toIndex=undefined;//开始查找的位置 var getIndexs=[];//e对应字符串的首字母索引容器 while (true){ toIndex=str.indexOf 阅读全文
posted @ 2020-11-28 13:26 小庄的blog 阅读(438) 评论(0) 推荐(0) 编辑