打包成tar.gz格式压缩包 # tar -zcvf file.tar.gz /file 解压tar.gz格式压缩包 # tar zxvf file.tar.gz 打包成tar.bz2格式压缩包 # tar -jcvf file.tar.bz2 /file 解压tar.bz2格式的压缩包 # tar ...
分类:
系统相关 时间:
2021-04-05 11:56:27
阅读次数:
0
注意table 标签的id test0() { let exportFileContent = document.getElementById('mtable').outerHTML; let blob = new Blob([exportFileContent], { type: 'text/pl ...
分类:
其他好文 时间:
2021-04-05 11:50:59
阅读次数:
0
记录编译开始时间(自己的脚本一定要放在最前面,否则项目不会使用修改完成后的内容) # 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.POI简单介绍 Apache POI 是用Java 编写的免费开源的跨平台的 Java API,Apache POI提供API给Java程式对 Microsoft Office 格式档案读和写的功能 HSSF 提供读写Microsoft Excel XLS格式档案的功能。 XSSF 提供读写Mi ...
分类:
编程语言 时间:
2021-04-01 13:38:38
阅读次数:
0
int *p表示的是一级指针,表示p所指向的地址里面存放的是一个int类型的值。int **p表示的是二级指针,表示p所指向的地址里面存放的是一个指向int类型的指针。 一级指针存放变量的地址,指向的值是变量的内容。如int* p={1,2,3}, p=数组的首地址,*p=数组的第一个值; 二级指针 ...
分类:
其他好文 时间:
2021-04-01 13:32:47
阅读次数:
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