file1=new File(path);//path 为文件地址String parentPath=file1.getParent();parentPath为path的父级目录String[] arr=null;//用来验证文件是否为空文件File parentFile=new File(pare ...
分类:
编程语言 时间:
2021-07-02 16:09:34
阅读次数:
0
一、SWAP分区大小设置参考: 4G以内的物理内存,SWAP 设置为内存的2倍。 4-8G的物理内存,SWAP 等于内存大小。 8-64G 的物理内存,SWAP 设置为8G。 64-256G物理内存,SWAP 设置为16G。 二、扩充或缩小SWAP分区: [root@node1 ~]# swapon ...
分类:
系统相关 时间:
2021-07-01 17:36:10
阅读次数:
0
import pymysql,xlwt def export_excel(table_name): host,user,passwd,db='192.168.1.152','root','myjcyf','us_sys' coon=pymysql.connect(host=host,user=use ...
分类:
其他好文 时间:
2021-07-01 17:27:29
阅读次数:
0
1.进入MySql数据库 mysql -uroot -p 2.查看数据库show databases; 3.创建数据库(GoTest)CREATE DATABASE GoTest 4.创建数据表()USE GO_TEST;CREATE TABLE `User`( `Id` BIGINT(20) NO ...
分类:
数据库 时间:
2021-07-01 17:27:15
阅读次数:
0
before commit, do: git rm --cached <filename> ATTENTION: do not use 'git rm <filename>', this will delete the file from disk if commited, first use: " ...
分类:
其他好文 时间:
2021-07-01 17:07:16
阅读次数:
0
1、Oracle用户下操作,创建证书 mkdir /home/oracle/wallet orapki wallet create -wallet "/home/oracle/wallet" -pwd WalletPasswd123 -auto_login_local 创建一个自签名证书并将其加载到 ...
分类:
数据库 时间:
2021-07-01 16:57:28
阅读次数:
0
(#5题) 请求首行,请求头,请求体 # 1 restful规范--10条 # 2 django上写符合restful规范的接口 # 3 drf写接口 # 4 APIView--》继承了原生View 》get,post方法 -(为什么get请求来了,就会执行get方法:原生View的dispatch ...
分类:
其他好文 时间:
2021-07-01 16:52:50
阅读次数:
0
macOS安装Oh My Zsh macOS从Catalina开始将默认的shell变为了Zsh,可以安装Oh My Zsh让其更加好用。 安装命令 sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zs ...
分类:
系统相关 时间:
2021-07-01 16:48:07
阅读次数:
0
使用vue-amap 一套专门用于vue的高德地图插件 1.安装 npm install vue-amap -S 2.在main.js中引入 import AMap from 'vue-amap' Vue.use(AMap) // 初始化地图 AMap.initAMapApiLoader({ key ...
分类:
其他好文 时间:
2021-07-01 16:30:44
阅读次数:
0
0.引入驱动jar包 使用jdbc进行具体操作前,需要引入相关数据库的jar包, 或者使用mave管理依赖 <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <dependency> <groupId>mys ...
分类:
数据库 时间:
2021-07-01 16:28:37
阅读次数:
0