上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: public static List<Map<String, String>> getMacAndIp() throws SocketException { List<Map<String, String>> listMap = new ArrayList<>(); // 获取当前主机的所有网络接口 阅读全文
posted @ 2022-05-18 08:45 天葬 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: package cn.ming.utils; import com.qiniu.common.QiniuException; import com.qiniu.http.Response; import com.qiniu.storage.BucketManager; import com.qini 阅读全文
posted @ 2022-05-01 16:30 天葬 阅读(497) 评论(0) 推荐(0) 编辑
摘要: JavaScript字符串对象转JSON格式 原始数据 { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: 阅读全文
posted @ 2022-01-09 10:39 天葬 阅读(163) 评论(0) 推荐(0) 编辑
摘要: spring boot+vue实现H5聊天室客服功能 h5效果图 vue效果图 功能实现 spring boot + webSocket 实现 官方地址 https://docs.spring.io/spring-framework/docs/5.0.8.RELEASE/spring-framewo 阅读全文
posted @ 2021-11-14 16:26 天葬 阅读(1700) 评论(1) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.List; import java.util.Set; import java.util.stream.Collectors; /** * @description 算法 * @date 2021/10/31 阅读全文
posted @ 2021-10-31 22:03 天葬 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Typora 导出html图片转base64 Typora 中图片使用绝对路径 图片路径不要使用中文,否则可能会不成功 打包 jar ,jar放在到出 html 同级目录下 必须要有 jdk 环境 一、实现代码 xxxxxxxxxx import java.io.*; import java.uti 阅读全文
posted @ 2021-10-01 21:53 天葬 阅读(1093) 评论(0) 推荐(0) 编辑
摘要: Itext PDF 编辑 合并 图片转PDF以及表单域 编辑PDF ​x import com.itextpdf.text.pdf.BaseFont; import com.itextpdf.text.pdf.PdfContentByte; import com.itextpdf.text.pdf. 阅读全文
posted @ 2021-09-18 15:11 天葬 阅读(1407) 评论(0) 推荐(0) 编辑
摘要: canvas 2d 目前支持预览,不支持真机调试 index.wxml <canvas type="2d" id="canvas" bindtouchmove="move" bindtouchstart="start" binderror="error" style="width:{{width}} 阅读全文
posted @ 2021-09-12 09:25 天葬 阅读(2547) 评论(1) 推荐(2) 编辑
摘要: 图片位置信息转化经纬度 1 public static String strToLatOrLng(String str) { 2 int i = str.lastIndexOf("°"); 3 String degree = str.substring(0, i); 4 int j = str.la 阅读全文
posted @ 2021-09-01 09:58 天葬 阅读(264) 评论(0) 推荐(0) 编辑
摘要: Mysql主从同步配置 配置准备 需要两个数据库 mysql 可视化工具,当然使用用命令行也可以 我这里演示使用 docker 启动两个 mysql 容器, 你也可以安装两个 mysql 前提版本一致 第一步 安装两个 mysql 创建 msyql 挂载目录 [root@localhost /]# 阅读全文
posted @ 2021-08-05 10:47 天葬 阅读(453) 评论(3) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页