Fork me on GitHub
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 80 下一页
摘要: GCC环境 首先安装gcc环境 https://www.cnblogs.com/aeolian/p/14562572.html Win+R输入mingw-get安装管理器,安装gdb,或者命令行输入mingw-get install gdb VSCode配置 配置编译环境 VSCode中 Ctrl+ 阅读全文
posted @ 2021-03-25 20:51 秋夜雨巷 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 安装C++环境 阅读全文
posted @ 2021-03-21 11:29 秋夜雨巷 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 普通请求 Userinfo sessionUserinfo = (Userinfo)session.getAttribute("CURR_USER"); //如果已经登录,不拦截 if(sessionUserinfo!=null){ return true; }else { //直接response 阅读全文
posted @ 2021-03-13 11:36 秋夜雨巷 阅读(894) 评论(0) 推荐(0) 编辑
摘要: Python升级到2.7 下载安装 #下载并解压python2.7 cd /usr/local/src wget https://www.python.org/ftp/python/2.7.10/Python-2.7.10.tgz tar -zxvf Python-2.7.10.tgz cd Pyt 阅读全文
posted @ 2021-03-10 22:57 秋夜雨巷 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 私有云盘Seafile 环境:CentOS 7 Seafile版本: Seafile 7.0.5社区版 官网手册:https://cloud.seafile.com/published/seafile-manual-cn/deploy/using_mysql.md 其他版本下载:https://do 阅读全文
posted @ 2021-03-10 13:19 秋夜雨巷 阅读(931) 评论(0) 推荐(0) 编辑
摘要: CLSID clsid 加密 在文件夹后面加上 .{20d04fe0-3aea-1069-a2d8-08002b30309d} 我的电脑 {20D04FE0-3AEA-1069-A2D8-08002B30309D} 我的文档 {450D8FBA-AD25-11D0-98A8-0800361B1103 阅读全文
posted @ 2021-02-10 11:25 秋夜雨巷 阅读(262) 评论(0) 推荐(0) 编辑
摘要: itext5.5.6根据pdf模板生成PDF文件 阅读全文
posted @ 2021-02-07 11:46 秋夜雨巷 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: Itext 官网 Maven坐标 <properties> <itextpdf.version>5.5.6</itextpdf.version> </properties> <dependencies> <dependency> <groupId>com.itextpdf</groupId> <ar 阅读全文
posted @ 2021-02-07 11:44 秋夜雨巷 阅读(2479) 评论(0) 推荐(1) 编辑
摘要: 插件 zoom.js 原生 html <%--图片放大框--%> <%--外层为一层全屏透明黑色,并且在其他层上面--%> <div id="outerdiv" style="position:fixed;top:0;left:0;background:rgba(0,0,0,0.7);z-index 阅读全文
posted @ 2021-02-03 10:46 秋夜雨巷 阅读(129) 评论(0) 推荐(0) 编辑
摘要: html type="file"指定input为文件选择框,accept="image/*"表示文件框可以选择图片,multiple表示可以选择多个文件。 <input id="upload" type="file" accept="image/*,audio/*,video/*" multiple 阅读全文
posted @ 2021-02-02 19:57 秋夜雨巷 阅读(1996) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 80 下一页