上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页
摘要: 设置 Enable annotation processing 阅读全文
posted @ 2020-03-21 20:12 wolbo 阅读(832) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash cd ./tools/patchinstall function handle_int() { kill $BCPID exit } trap handle_int INT ./startpatch-linux.sh & BCPID=$! cd /FIShare/gsclou 阅读全文
posted @ 2020-03-11 18:30 wolbo 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 使用find 排除 找到./tools/dbsetup/startlibs/config/suconfig/ 下除了以下文件名的文件 find ./tools/dbsetup/startlibs/config/suconfig/ ! -name 'su_aa.json' \ ! -name 'su_ 阅读全文
posted @ 2020-03-09 12:21 wolbo 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: 背景: 有些词汇需要翻译 翻译严谨性不高 一个一个的翻译太累 脚本: var btn=$('#translate-button'); var src=['资产编号', '资产名称', '资产类别', '折旧方法', '资产状态', '资产来源', '资产用途', '入账日期', '所属部门', '资 阅读全文
posted @ 2020-03-02 17:48 wolbo 阅读(682) 评论(0) 推荐(0) 编辑
摘要: 1 pad String.prototype.PadLeft = function(totalWidth, paddingChar) { if ( paddingChar != null ) { return this.PadHelper(totalWidth, paddingChar, false 阅读全文
posted @ 2020-02-23 17:26 wolbo 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 下载源码分析 是launch4j-maven-plugin 搜索路径的问题 即使安装了jre 配置了环境变量 launch4j只去搜指定位置的注册表 如果只想本地编译使用 将jre 指定为java_home即可 如果想任何电脑都能打开 就打成jar包 用launch4j 打一个jre到exe里 阅读全文
posted @ 2020-02-18 10:01 wolbo 阅读(2767) 评论(0) 推荐(0) 编辑
摘要: 1 使用match 不能加/g 否则无效 2 使用matchAll 需要先定义一个RegExp对象 const regexp = RegExp(/,"(.+)"\)/,'g'); const matches = str.matchAll(regexp); for (const match of ma 阅读全文
posted @ 2020-02-17 16:20 wolbo 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 谷歌浏览器chrome80 突然什么都打不开了 重装也没用 喔唷,崩溃啦 增加启动参数 --disable-features=RendererCodeIntegrity 阅读全文
posted @ 2020-02-17 13:55 wolbo 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1 替换文件某一行 将文件./config/patchconfig/patch_config.json 的第二行替换为 "path": "../patchfiles", 将文件aaa.txt中的第三行替换为888 content='"path": "../patchfiles", ' sed -i 阅读全文
posted @ 2020-02-17 09:12 wolbo 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1 根据ip替换 var OSInfo = Environment.OSVersion; string pathpart = "hosts"; if (OSInfo.Platform == PlatformID.Win32NT) { //is windows NT pathpart = "syste 阅读全文
posted @ 2020-02-15 10:45 wolbo 阅读(2228) 评论(0) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 21 下一页