在controller节点,shell窗口进行账户登录,需要配置用户环境脚本 export OS_USER_DOMAIN_NAME=Default export OS_PROJECT_NAME=admin(项目名称) export OS_USERNAME=admin(账户名) export OS_P ...
分类:
其他好文 时间:
2021-07-29 16:22:50
阅读次数:
0
/** * 格式化数字 */ public function float_number($number){ $length = strlen($number); //数字长度 if($length > 8){ //亿单位 $str = substr_replace(strstr($number,su ...
分类:
Web程序 时间:
2021-07-28 21:33:14
阅读次数:
0
word可以直接另存为pdf格式,方便了word和pdf之间的格式转换,但是在一般的默认情况下,word直接另存为pdf的时候是不创建书签信息的,这样长文档在没有书签标题导航实在是不方便阅读。 因此我们就可能会需要寻求办法使得导出的pdf有书签导航。 1.打开word文件,点击另存为,在保存类型中选 ...
分类:
其他好文 时间:
2021-07-26 16:36:48
阅读次数:
0
JAVA DP 反向: public final int maximalSquare(char[][] matrix) { int xLen = matrix.length, yLen = matrix[0].length, re = 0; int[][] cache = new int[xLen] ...
分类:
其他好文 时间:
2021-07-23 17:42:02
阅读次数:
0
从sqlserver中提取数据如何截取字符 1、LOCATE(substr , str ):返回子串 substr 在字符串 str 中第一次出现的位置,如果字符substr在字符串str中不存在,则返回0;2、POSITION(substr IN str ):返回子串 substr 在字符串 st ...
分类:
数据库 时间:
2021-07-20 16:24:17
阅读次数:
0
# -*- coding: utf-8 -*-# @Time : 2021/7/18 11:40# @Author :liuw# @File : testUrllib.py# @Software: PyCharmimport urllib.requestimport urllib.parse# 获取 ...
分类:
Web程序 时间:
2021-07-19 16:46:08
阅读次数:
0
上一篇升级版,转换文件内容。 #!/user/bin env python # author:Simple-Sir # time:2021/7/9 23:32 def txt_2_list(filename): dic = {} dic_k = [] dic_v = [] with open(fil ...
分类:
编程语言 时间:
2021-07-09 17:54:52
阅读次数:
0
public int calculate(String s) { int len = s.length(); Stack<Integer> s1 = new Stack<>(); // 操作数栈 int num = 0; char preSign = '+'; // 为了方便计算,1+1+1 > + ...
分类:
其他好文 时间:
2021-07-07 17:55:15
阅读次数:
0
14,17,24,83,33,21,43,60,20,28,82,88,79,25,15,93,48,76,40,58,95,13,75,66,38,60,18,25,31,89,20,14,58,53,80,58,63,22,92,60,10,25,88,87 950,928,212,880,46 ...
分类:
其他好文 时间:
2021-07-05 19:05:30
阅读次数:
0
| # el-upload上传列表实现 展开 收起 | | | | #### 无图言*,所以先上最终效果图(想参考代码的可以直接滑到最后) | | | | | | | | ### 具体实现思路🤯 | | | | 注意: 每个人的项目环境以及需求,都不尽相同,所以这里仅仅提供思路. | | | | ...
分类:
Web程序 时间:
2021-07-05 17:31:24
阅读次数:
0