摘要: 实现功能: 从表idcard中读取身份证号,将身份证信息和校验结果写入到表idcard_result中。 代码流程: 1. 创建存储方法validate_idcard(p_idcard),校验身份证号p_idcard是否合法 2. 创建存储过程validateIdcard从idcard表中读取身份证 阅读全文
posted @ 2022-02-16 21:01 不愿意透露姓名的汪敏 阅读(232) 评论(0) 推荐(0) 编辑
摘要: txt文件为sql1.txt txt中数据格式如图所示: 代码: public class test { //连接数据库 public static Connection getConnection(String data, String user, String pwd) { Connection 阅读全文
posted @ 2022-01-25 21:00 不愿意透露姓名的汪敏 阅读(1349) 评论(0) 推荐(1) 编辑
摘要: 需求:将startPath文件夹下 文件名在在table.txt 中的文件移动到endPath文件夹下 table.txt中包含需要移动的文件名 startPath中有所有文件 endPath为目标文件夹 方法:File.renameTo()方法 public static void main(St 阅读全文
posted @ 2021-12-08 15:24 不愿意透露姓名的汪敏 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 1、项目简介 课程设计采用java swing设计扫雷游戏软件,设计目标如下: 1. 扫雷游戏分为初级、中级和高级三个级别,初级模式9*9个方块中有10个雷、中级模式16*16个方块中有40个雷、高级模式16*30个方块中有99个雷,单击游戏菜单可以选择“开局”、“初级”、“中级”、“高级”或“退出 阅读全文
posted @ 2021-12-05 16:44 不愿意透露姓名的汪敏 阅读(623) 评论(0) 推荐(0) 编辑
摘要: mybatis中dao接口与mapper配置文件映射绑定失败,即dao层接口与xml文件方法匹配不到。 常见原因可能有: 1. mapper.xml的namespace是否对应接口类的全名,必须完全一致。 namespace="com.blog.dao.mapper.ArticleMapper" 2 阅读全文
posted @ 2021-11-01 22:44 不愿意透露姓名的汪敏 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 文献一 文献:Lai H, Pan Y, Liu Y, et al. Simultaneous feature learning and hash coding with deep neural networks[C]//Proceedings of the IEEE conference on c 阅读全文
posted @ 2019-12-04 16:23 不愿意透露姓名的汪敏 阅读(2171) 评论(0) 推荐(0) 编辑
摘要: 参考文献:Lin K, Lu J, Chen C S, et al. Learning compact binary descriptors with unsupervised deep neural networks[C]//Proceedings of the IEEE Conference o 阅读全文
posted @ 2019-11-25 09:25 不愿意透露姓名的汪敏 阅读(515) 评论(0) 推荐(0) 编辑
摘要: 1、R-MAC 参考博客:https://blog.csdn.net/m0_37717568/article/details/72778863 参考文献:Tolias G, Sicre R, Jégou H. Particular object retrieval with integral max 阅读全文
posted @ 2019-11-18 15:40 不愿意透露姓名的汪敏 阅读(1207) 评论(5) 推荐(0) 编辑
摘要: 1、简介 SIFT:Scale-Invariant Feature Transform,尺度不变特征变换。 类别:特征描述子。 介绍:SIFT是一种电脑视觉的算法用来侦测与描述影像中的局部性特征,它在空间尺度中寻找极值点,并提取出其位置、尺度、旋转不变量,此算法由 David Lowe在1999年所 阅读全文
posted @ 2019-11-06 20:55 不愿意透露姓名的汪敏 阅读(657) 评论(0) 推荐(0) 编辑