04 2020 档案

摘要:// md5import org.apache.commons.codec.digest.DigestUtils; String str = "${appid}" + "${appkey}" + "${salt}"; String sign = DigestUtils.md5Hex(str); va 阅读全文
posted @ 2020-04-22 17:16 Mosicol 阅读(605) 评论(0) 推荐(0)
摘要:String[] wds = new String[] {"1280","1920","3840","666"}; String[] hgs = {"720","1080","2160","444"}; int index=(int)(Math.random()*wds.length); Strin 阅读全文
posted @ 2020-04-22 10:18 Mosicol 阅读(1839) 评论(0) 推荐(0)
摘要:目录 1. 规范背景与目的 2. 设计规范2.1 数据库设计 2.1.1 库名 2.1.2 表结构 2.1.3 列数据类型优化 2.1.4 索引设计 2.1.5 分库分表、分区表 2.1.6 字符集 2.1.7 程序DAO层设计建议 2.1.8 一个规范的建表语句示例 2.2 SQL编写 2.2.1 阅读全文
posted @ 2020-04-20 14:26 Mosicol 阅读(120) 评论(0) 推荐(0)
摘要:from PIL import Image from wordcloud import WordCloud, ImageColorGenerator import matplotlib.pyplot as plt import numpy as np import jieba def GetWord 阅读全文
posted @ 2020-04-03 17:40 Mosicol 阅读(183) 评论(0) 推荐(0)