XML文件读取和写入 package com.example.mvcdemo; import org.dom4j.*; import org.dom4j.io.OutputFormat; import org.dom4j.io.SAXReader; import org.dom4j.io.XMLWr ...
分类:
编程语言 时间:
2021-02-25 12:13:47
阅读次数:
0
Docker 环境部署的oracle #查询oracle 实例 docker ps -a #进入实例 docker exec -it 58aca4848691 /bin/bash #切换oracle用户 su - oracle #设置oracle 环境变量 export ORACLE_HOME=/u ...
分类:
数据库 时间:
2021-02-25 11:52:18
阅读次数:
0
用于把一个字符串分割成字符串数组。 返回值:一个字符串数组,不包括 separator 自身 参数:string.split(separator,howmany) separator 必需。字符串或正则表达式,从该参数指定的地方分割 stringObject。 howmany 可选。该参数可指定返回 ...
分类:
其他好文 时间:
2021-02-24 13:03:07
阅读次数:
0
当编写WHERE带有包含文本数据的列的子句时,SQL支持许多有用的运算符来执行诸如不区分大小写的字符串比较和通配符模式匹配之类的操作。我们在下面显示一些常见的文本数据特定运算符: Operator Condition Example = 区分大小写的精确字符串比较(注意单个等于) col_name= ...
分类:
数据库 时间:
2021-02-22 12:38:09
阅读次数:
0
命令行指令 Git 全局设置 git config --global user.name "Administrator" git config --global user.email "admin@example.com" 创建新版本库 git clone http://f86ec4dd880f/r ...
分类:
其他好文 时间:
2021-02-20 12:12:27
阅读次数:
0
AES: package com.example.wuji.jiami; import com.sun.org.apache.xml.internal.security.utils.Base64; import javax.crypto.Cipher; import javax.crypto.spe ...
分类:
其他好文 时间:
2021-02-19 13:13:37
阅读次数:
0
父类依赖的导入<parent> <groupId>org.example</groupId> <artifactId>dubboDome</artifactId> <version>1.0-SNAPSHOT</version></parent> ...
分类:
其他好文 时间:
2021-02-19 13:11:37
阅读次数:
0
The K Weakest Rows in a Matrix (E) 题目 Given a m * n matrix mat of ones (representing soldiers) and zeros (representing civilians), return the indexes ...
分类:
其他好文 时间:
2021-02-18 13:02:33
阅读次数:
0
Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2021-02-17 14:40:27
阅读次数:
0
地址 https://pintia.cn/problem-sets/994805342720868352/problems/994805502658068480 主要是模拟 题意比较绕。 题目大意是 接受各个学生的三门成绩 C M E, 然后四舍五入计算出平均成绩A 在 接受询问的学生的id后 打印 ...
分类:
其他好文 时间:
2021-02-16 11:53:57
阅读次数:
0