上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页
摘要: 录图: 方法代码: /** * 读取目录下的所有文件 * * @param dir * 目录 * @param fileNames * 保存文件名的集合 * @return */ public static void findFileList(File dir, List<String> fileN 阅读全文
posted @ 2021-09-19 16:08 奥兰王子 阅读(2564) 评论(0) 推荐(0) 编辑
摘要: Public Sub test() Dim strPath As String Dim fso As Object Dim objFolder As Object Set fso = CreateObject("Scripting.FileSystemObject") lngSeqNo = 0 st 阅读全文
posted @ 2021-09-12 13:32 奥兰王子 阅读(5400) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/fec4bce2722a10f2618d8b2d.html 请问在运行VBA代码时,如何让运行过程不显示http://club.excelhome.net/thread-20711-1-1.html程序前面加上 Applicatio 阅读全文
posted @ 2021-09-03 08:05 奥兰王子 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 下载一个sqliteSpy 或 A5M2 这样的DB客户端工具。 http://www.winportal.com/sqlitespy 注: 连接数据库时,需要用户名或密码 ,不需要填写,直接点确定即可。 打开wc.db数据库 delete from work_queue 阅读全文
posted @ 2021-07-23 07:54 奥兰王子 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 方法一: /** * * 遍历对象属性值(利用反射实现),可以在需要对 对象中的每个字段都执行相同的处理时使用 * */ public class DisposeUtil { public static Object dispose(Object object){ Field[] field = o 阅读全文
posted @ 2021-07-07 05:35 奥兰王子 阅读(2776) 评论(0) 推荐(0) 编辑
摘要: 排错步骤: 1.查看网络是否通畅 打开cmd, ping 数据库IP 2. 查看端口是否通畅 打开cmd,tnsping 数据库IP 如果piing不通,可能是防火墙问题 3.检查防火墙状态 #service iptables status 如果开启,请关闭:#service iptables st 阅读全文
posted @ 2021-07-06 13:00 奥兰王子 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: strSearch 是被查找的内容strReplace 是替换的内容 Sub FindAndReplace(ByVal strSearch As String, ByVal strReplace As String) Cells.Replace What:=strSearch, Replacemen 阅读全文
posted @ 2021-06-16 06:23 奥兰王子 阅读(1846) 评论(0) 推荐(0) 编辑
摘要: Sheet1.Range("1:" & Sheet1.Rows.Count).Find("测试字符串").Address excel 中查找字符串并返回该单元格的位置 若字符串在查找区域是唯一的,可简单用函数解决。示例:要求在 A1:C10 区域内,查找存在字符串“str”的单元格,返回该单元 格地 阅读全文
posted @ 2021-06-15 22:46 奥兰王子 阅读(7345) 评论(0) 推荐(1) 编辑
摘要: java8 postgreSQL Oracle 1 LocalDate date 2 LocalTime time 3 LocalDateTime timestamp without timezone 4 OffsetDateTime timestamp with timezone 5 String 阅读全文
posted @ 2021-06-10 20:30 奥兰王子 阅读(9280) 评论(1) 推荐(0) 编辑
摘要: 声明 : Public m_lstBarrow As List(Of String) 'String为集合子成员数据类型 添加 : m_oSterilizeRegControl.m_lstBarrow.Add(strBarrow) 'strBarrow为赋值后的子成员 删除 : m_oSterili 阅读全文
posted @ 2021-06-10 12:53 奥兰王子 阅读(988) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 34 下一页