摘要: 效果图 wxml <view class="toastbd" catchtouchmove='preventTouchMove' wx:if='{{showModal}}'></view> <view class="mytoast" catchtouchmove='preventTouchMove' 阅读全文
posted @ 2023-06-12 10:39 涂山树下 阅读(269) 评论(0) 推荐(0)
摘要: 一般表单页面都需要填写手机号,校验用户输入的手机号码是否正确,就要用到正则表达式,用正则表达式来匹配手机号段,如在运营商号段内,则号码正确。因此,需要知道运营商最新的号段,如下所示: 各大运营商手机号码段(注意时效性,有可能会不全) 中国电信号段 133、153、173、177、180、181、18 阅读全文
posted @ 2023-06-09 13:22 涂山树下 阅读(984) 评论(0) 推荐(0)
摘要: 微信小程序页面跳转目前有以下方法(不全面的欢迎补充): 1. 利用小程序提供的 API 跳转: // 保留当前页面,跳转到应用内的某个页面,使用wx.navigateBack可以返回到原页面。 // 注意:调用 navigateTo 跳转时,调用该方法的页面会被加入堆栈,但是 redirectTo 阅读全文
posted @ 2023-06-04 18:42 涂山树下 阅读(3823) 评论(0) 推荐(0)
摘要: package ch04; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Label; 阅读全文
posted @ 2022-11-20 21:36 涂山树下 阅读(181) 评论(0) 推荐(0)
摘要: @Test void contextLoads02(){ Map<String, Object> hashMap = new HashMap<>(); hashMap.put("a","1"); hashMap.put("b",null); hashMap.put("c","3"); for(Map 阅读全文
posted @ 2022-11-01 23:44 涂山树下 阅读(143) 评论(0) 推荐(0)
摘要: File file = new File("test.xlsx"); File tempFile = new File("temp.xlsx"); Word word = new Word(); word.w="AAAkkk222"; ArrayList list = new ArrayList() 阅读全文
posted @ 2022-11-01 20:49 涂山树下 阅读(2472) 评论(2) 推荐(0)
摘要: File templateFile = new File(filePath, fileName); File destFile = new File(filePath, "test.xlsx"); try { if (templateFile.exists()) { //追加数据,目标文件与原始文件 阅读全文
posted @ 2022-10-31 23:08 涂山树下 阅读(356) 评论(0) 推荐(0)
摘要: 1. 下载libconfig https://hyperrealm.github.io/libconfig/ 2. linux下解压 tar -zvxf libconfig-1.7.3.tar.gz 3. linux下安装libconfig 1.进入libconfig-1.7.3文件夹 cd lib 阅读全文
posted @ 2022-07-25 21:09 涂山树下 阅读(567) 评论(0) 推荐(0)
摘要: Linux上,到pkg-config官网https://www.freedesktop.org/wiki/Software/pkg-config/,下载最新安装包目前,最新版是2017年3月20日发布的0.29.2,下载地址https://pkg-config.freedesktop.org/rel 阅读全文
posted @ 2022-07-25 17:45 涂山树下 阅读(2518) 评论(0) 推荐(0)
摘要: 阿里源 deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiversedeb http://mirrors.aliyun.com/ubuntu/ bionic-security main restric 阅读全文
posted @ 2022-06-20 21:59 涂山树下 阅读(1193) 评论(0) 推荐(0)