文章目录
  1. 一行代码汇总
    1. Maven
      1. Maven 手动安装
    2. SHELL
      1. 获取Java WebService客户端代码
      2. linux查看文件夹目录大小
      3. 重建图标缓存
      4. 右键Notepad++打开
    3. Web
      1. DIV居中
    4. 正则
      1. 数字
      2. 字符
    5. Server
      1. Java获取磁盘空间
      2. 可用性指标

一行代码汇总

Maven

Maven 手动安装

1
mvn install:install-file -Dfile=/Users/pingansheng/Desktop/maven-assembly-plugin-2.6.jar -DgroupId=org.apache.maven.plugins -DartifactId=maven-assembly-plugin -Dversion=2.6 -Dpackaging=jar

SHELL

获取Java WebService客户端代码

1
wsdl2java -d D:\\src -client http://api.xxx.cn/xxxAPI/service/auditResBatchQueryService?wsdl

linux查看文件夹目录大小

1
du -h --max-depth=1

重建图标缓存

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
REM bat代码开始
REM 更新:增加清除系统托盘旧图标
REM 关闭Windows外壳程序explorer
taskkill /f /im explorer.exe
REM 清理系统图标缓存数据库
attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db"
del /f "%userprofile%\AppData\Local\IconCache.db"
attrib /s /d -h -s -r "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\*"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_32.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_96.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_102.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_256.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_1024.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_idx.db"
del /f "%userprofile%\AppData\Local\Microsoft\Windows\Explorer\thumbcache_sr.db"
REM 清理 系统托盘记忆的图标
echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v IconStreams
echo y|reg delete "HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\TrayNotify" /v PastIconsStream
REM 重启Windows外壳程序explorer.exe
start explorer

右键Notepad++打开

安装

1
2
3
4
5
6
7
8
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\NotePad++]
@="用&Notepad++打开"
"Icon"="C:\\Program Files (x86)\\Notepad++\\Notepad++.exe"
[HKEY_CLASSES_ROOT\*\shell\NotePad++\Command]
@="C:\\Program Files (x86)\\Notepad++\\Notepad++.exe \"%1\""

卸载

1
2
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\*\shell\NotePad++]

Web

DIV居中

1
2
3
4
5
<div style="text-align: center">
<!--里面的width必须设置才可以生效-->
<div style="width:900px;margin:0 auto;text-align: left">
</div>
</div>

正则

数字

1
2
3
4
#正实数,最多两位小数
^[0-9]+(.[0-9]{2})?$
#字母数字下划线
^\w+$

字符

1
2
#只匹配字母、中文、数字、下划线,顺序不限
^([ \u4e00-\u9fa5 a-zA-Z0-9_]+)$

Server

Java获取磁盘空间

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
public String getDiskInfo() {
File diskPartition = new File("J:") ;
long totalCapacity = diskPartition.getTotalSpace();
long freePartitionSpace = diskPartition.getFreeSpace();
long usablePatitionSpace = diskPartition.getUsableSpace();
System. out.println("**** Sizes in Mega Bytes ****\n ");
System. out.println("Total C partition size : " + totalCapacity / (1024 * 1024) + " MB");
System. out.println("Usable Space : " + usablePatitionSpace / (1024 * 1024) + " MB");
System. out.println("Free Space : " + freePartitionSpace / (1024 * 1024) + " MB");
System. out.println(" \n**** Sizes in Giga Bytes ****\n ");
System. out.println(
"Total C partition size : " + totalCapacity / (1024 * 1024 * 1024) + " GB" );
System. out.println("Usable Space : " + usablePatitionSpace / (1024 * 1024 * 1024) + " GB" );
System. out.println("Free Space : " + freePartitionSpace / (1024 * 1024 * 1024) + " GB" );
}

可用性指标

指标 概率可靠性 每年允许不可用时间 典型场景
一个九 90% 1.2 个月 不可用
二个九 99% 3.6 天 普通单点
三个九 99.9% 8.6 小时 普通企业
四个九 99.99% 51.6 分钟 高可用
五个九 99.999% 5 分钟 电信级
六个九 99.9999% 31 秒 极高要求
七个九 99.99999% 3 秒 N/A
八个九 99.999999% 0.3 秒 N/A
九个九 99.9999999% 30 毫秒 N/A
文章目录
  1. 一行代码汇总
    1. Maven
      1. Maven 手动安装
    2. SHELL
      1. 获取Java WebService客户端代码
      2. linux查看文件夹目录大小
      3. 重建图标缓存
      4. 右键Notepad++打开
    3. Web
      1. DIV居中
    4. 正则
      1. 数字
      2. 字符
    5. Server
      1. Java获取磁盘空间
      2. 可用性指标