记录编译开始时间(自己的脚本一定要放在最前面,否则项目不会使用修改完成后的内容) # Type a script or drag a script file from your workspace to insert its path. app_build_time_path=${SRCROOT}/ ...
分类:
移动开发 时间:
2021-04-02 13:04:47
阅读次数:
0
用python写数据库连接时要用到数据连接池于是就想到了DBUtils ,这个简单pip install DBUtile 安装完后写代码测试一下 from DBUtils.PooledDB import PooledDB Traceback (most recent call last): File ...
分类:
数据库 时间:
2021-04-02 13:02:54
阅读次数:
0
https://blog.csdn.net/weixin_33672109/article/details/92378342 #!/bin/bash if [ "$#" -ne 2 ] ; then echo "USAGE: $0 -f server_list_file cmd" exit -1 f ...
分类:
系统相关 时间:
2021-04-02 13:01:20
阅读次数:
0
1.获取后端返回的二进制流//安装xlsx插件 npm install xlsx -s //在页面引入xlsx impory XLSX from 'xlsx' //如果是axios请求,responseType需要设置为arraybuffer //获取并处理返回的信息 let data = new ...
分类:
其他好文 时间:
2021-04-02 12:55:54
阅读次数:
0
1、现象 在 /etc/profile里加了环境变量,但是重启这个环境变量未加入成功 2、原因 可能是被其他加载环境变量的脚本刷掉了 参考:https://blog.csdn.net/my_wings/article/details/102617631 3、解决 在.bashrc里添加 vim ~/ ...
分类:
系统相关 时间:
2021-04-01 13:12:59
阅读次数:
0
一、filter,map,flatmap练习: 1.读文本文件生成RDD lines lines = sc.textFile('file:///home/hadoop/word.txt') lines.collect() 2.将一行一行的文本分割成单词 words words=lines.flatM ...
分类:
其他好文 时间:
2021-04-01 13:07:18
阅读次数:
0
1、pycharm的安装 File -> Settings ->选择python的版本 ->点击加号 选择当前的文件进行安装 搜索pytest 安装当前文件 装好之后 以pytest方式运行部分代码,需要改该工程设置默认的运行器:file->Setting->Tools->Python Integr ...
分类:
其他好文 时间:
2021-03-31 12:34:21
阅读次数:
0
A very simple tool that converts Swagger Api Document to Html File. 小记Swagger接口生成Html离线文档 由来 很多人用swagger2markup以及asciidoctor-maven-plugin插件来生成html格式的文 ...
分类:
Web程序 时间:
2021-03-31 12:32:00
阅读次数:
0
页面点击下载查询数据库数据写入到SXSSFWorkbook(工作簿)中的`Sheet sheet = xswb.createSheet();`(工作表) 前端发送请求到servlet,把需要的参数传递到后台【我这里把response对象也封装到了(EiInfo inInfo)对象中】(此步骤省略.. ...
分类:
编程语言 时间:
2021-03-31 12:24:47
阅读次数:
0
fiddler 获取response中json内容,在fiddler scrpit中 OnBeforeResponse函数内加以下代码 //过滤无关请求,只关注特定请求 if (oSession.fullUrl.Contains("所需网站")|| ) { oSession.utilDecodeRe ...
分类:
移动开发 时间:
2021-03-31 12:23:20
阅读次数:
0