==============================================================================

 Linux系统解压缩

==============================================================================

概述:

本篇将介绍Linux系统中的压缩和解压缩的工具,以及归档工具(tar,cpio)

  • compress/uncompress:对应 .Z 结尾的压缩格式文件;

  • gzip/gunzip:其对应的是 .gz 结尾的压缩格式文件;

  • bzip2/bunzip2:其对应的是 .bz2 结尾的压缩格式文件;

  • xz/unxz: 其对应的是 .xz 结尾的压缩格式文件;

  • zip/unzip:其对应的是 .zip 结尾的压缩格式文件

==============================================================================

Linux系统解压缩

 1.压缩比和常用工具

★压缩比:

  • 时间换空间(CPU的时间 --->磁盘空间)

★常用工具:

早期的有compress和uncompress,其对应的是 .Z 结尾的压缩格式文件,现在适应较多的有:

  • gzip/gunzip:其对应的是 .gz 结尾的压缩格式文件;

  • bzip2/bunzip2:其对应的是 .bz2 结尾的压缩格式文件;

  • xz/unxz: 其对应的是 .xz 结尾的压缩格式文件;

  • zip/unzip:其对应的是 .zip 结尾的压缩格式文件

  • tar,cpio:归档和展开归档

 2.gzip和gunzip(使用最多)

★常用工具:

  • gzip,gunzip,zcat

★语法:

  • gzip [OPTION]... FILE ...

选项:

  • -d:解压缩,相当于gunzip

  • -c:将压缩或解压缩的结果输出至标准输出(gzip -c FILE > /PATH/TP/SOMEFILE.gz);

  • -#:1-9,指定压缩比,值越大压缩比越大  如:gzip -9 m

  • -v:显示详情

解压缩:

  • guzip

zcat:

  • 不显式解压缩的前提下查看文本文件内容(适用于查看小文件)  如:zcat FILE > /PATH/TP/SOMEFILE

演示:

[root@centos7 ~]# cp /var/log/messages /tmp/test/
[root@centos7 ~]# ll /tmp/test/
总用量 288
-rw-r----- 1 root root      0 2月  20 13:41 a
-rw-rw-rw- 1 root root      0 2月  20 13:41 b.danger
-r--r----- 1 root root      0 2月  20 13:41 c
-rwxrwxr-x 1 root root      0 2月  20 13:41 d
-rwxrwxrwx 1 root root      0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root      0 2月  20 13:41 f
-rw-r--r-- 1 root root      0 2月  20 13:41 g
-rw------- 1 root root 292504 2月  20 16:28 messages
[root@centos7 ~]# ll -h /tmp/test/messages
-rw------- 1 root root 286K 2月  20 16:28 /tmp/test/messages# 压缩,删除原文件,保留压缩后以.gz结尾的文件
[root@centos7 ~]# gzip /tmp/test/messages[root@centos7 ~]# ll -h /tmp/test
总用量 44K
-rw-r----- 1 root root   0 2月  20 13:41 a
-rw-rw-rw- 1 root root   0 2月  20 13:41 b.danger
-r--r----- 1 root root   0 2月  20 13:41 c
-rwxrwxr-x 1 root root   0 2月  20 13:41 d
-rwxrwxrwx 1 root root   0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root   0 2月  20 13:41 f
-rw-r--r-- 1 root root   0 2月  20 13:41 g
-rw------- 1 root root 41K 2月  20 16:28 messages.gz# 解压缩,原来的压缩文件被删除,保留解压缩后的文件
[root@centos7 ~]# gunzip /tmp/test/messages.gz
[root@centos7 ~]# ll -h /tmp/test
总用量 288K
-rw-r----- 1 root root    0 2月  20 13:41 a
-rw-rw-rw- 1 root root    0 2月  20 13:41 b.danger
-r--r----- 1 root root    0 2月  20 13:41 c
-rwxrwxr-x 1 root root    0 2月  20 13:41 d
-rwxrwxrwx 1 root root    0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root    0 2月  20 13:41 f
-rw-r--r-- 1 root root    0 2月  20 13:41 g
-rw------- 1 root root 286K 2月  20 16:28 messages# zcat可以查看压缩的文件,不建议对大文件使用zcat命令查看
[root@centos7 ~]# zcat /tmp/test/messages.gz#=====================================================================================
# 解压缩
[root@centos7 ~]# gzip -d /tmp/test/messages.gz
[root@centos7 ~]# ll /tmp/test/
总用量 288
-rw-r----- 1 root root      0 2月  20 13:41 a
-rw-rw-rw- 1 root root      0 2月  20 13:41 b.danger
-r--r----- 1 root root      0 2月  20 13:41 c
-rwxrwxr-x 1 root root      0 2月  20 13:41 d
-rwxrwxrwx 1 root root      0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root      0 2月  20 13:41 f
-rw-r--r-- 1 root root      0 2月  20 13:41 g
-rw------- 1 root root 292504 2月  20 16:28 messages# 将压缩或解压缩的结果输出至标准输出(gzip -c FILE > /PATH/TP/SOMEFILE.gz)
[root@centos7 ~]# gzip -c /tmp/test/messages > /tmp/test/messages.gz
[root@centos7 ~]# ll /tmp/test/
总用量 332
-rw-r----- 1 root root      0 2月  20 13:41 a
-rw-rw-rw- 1 root root      0 2月  20 13:41 b.danger
-r--r----- 1 root root      0 2月  20 13:41 c
-rwxrwxr-x 1 root root      0 2月  20 13:41 d
-rwxrwxrwx 1 root root      0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root      0 2月  20 13:41 f
-rw-r--r-- 1 root root      0 2月  20 13:41 g
-rw------- 1 root root 292504 2月  20 16:28 messages
-rw-r--r-- 1 root root  41791 2月  20 16:44 messages.gz# 解压缩到标准输出
[root@centos7 ~]# rm -f /tmp/test/messages
[root@centos7 ~]# gzip -d -c /tmp/test/messages.gz > /tmp/test/messages
[root@centos7 ~]# ll /tmp/test/
总用量 332
-rw-r----- 1 root root      0 2月  20 13:41 a
-rw-rw-rw- 1 root root      0 2月  20 13:41 b.danger
-r--r----- 1 root root      0 2月  20 13:41 c
-rwxrwxr-x 1 root root      0 2月  20 13:41 d
-rwxrwxrwx 1 root root      0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root      0 2月  20 13:41 f
-rw-r--r-- 1 root root      0 2月  20 13:41 g
-rw-r--r-- 1 root root 292504 2月  20 16:50 messages
-rw-r--r-- 1 root root  41791 2月  20 16:44 messages.gz

 

 2.bzip2/bunzip2/bzcat

★语法:

  • bzip2 [OPTION]... FILE ...

选项:

  • -k:keep, 保留原文件;

  • -d:解压缩;

  • -#:1-9,压缩比,默认为6

bzcat:

  • 不显式解压缩的前提下查看文本文件内容

注意:

  • bzip2和gzip命令的使用方式基本相同,压缩或解压缩后都会删除源文件

演示:

# 压缩
[root@centos7 ~]# bzip2 /tmp/test/messages[root@centos7 ~]# ll -h /tmp/test/
总用量 72K
-rw-r----- 1 root root   0 2月  20 13:41 a
-rw-rw-rw- 1 root root   0 2月  20 13:41 b.danger
-r--r----- 1 root root   0 2月  20 13:41 c
-rwxrwxr-x 1 root root   0 2月  20 13:41 d
-rwxrwxrwx 1 root root   0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root   0 2月  20 13:41 f
-rw-r--r-- 1 root root   0 2月  20 13:41 g
-rw-r--r-- 1 root root 26K 2月  20 16:50 messages.bz2 #压缩后的结果
-rw-r--r-- 1 root root 41K 2月  20 16:44 messages.gz# 解压缩
[root@centos7 ~]# bunzip2 /tmp/test/messages.bz2
[root@centos7 ~]# ll -h /tmp/test/
总用量 332K
-rw-r----- 1 root root    0 2月  20 13:41 a
-rw-rw-rw- 1 root root    0 2月  20 13:41 b.danger
-r--r----- 1 root root    0 2月  20 13:41 c
-rwxrwxr-x 1 root root    0 2月  20 13:41 d
-rwxrwxrwx 1 root root    0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root    0 2月  20 13:41 f
-rw-r--r-- 1 root root    0 2月  20 13:41 g
-rw-r--r-- 1 root root 286K 2月  20 16:50 messages  # 解压缩后的结果
-rw-r--r-- 1 root root  41K 2月  20 16:44 messages.gz# -k 选项不用指明重定向的文件,自动保留源文件在当前文件中
[root@centos7 ~]# bzip2 -k /tmp/test/messages
[root@centos7 ~]# ll -h /tmp/test/
总用量 360K
-rw-r----- 1 root root    0 2月  20 13:41 a
-rw-rw-rw- 1 root root    0 2月  20 13:41 b.danger
-r--r----- 1 root root    0 2月  20 13:41 c
-rwxrwxr-x 1 root root    0 2月  20 13:41 d
-rwxrwxrwx 1 root root    0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root    0 2月  20 13:41 f
-rw-r--r-- 1 root root    0 2月  20 13:41 g
-rw-r--r-- 1 root root 286K 2月  20 16:50 messages
-rw-r--r-- 1 root root  26K 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root  41K 2月  20 16:44 messages.gz


 3.xz/unxz/zxcat(压缩比最强)

★语法:

  • xz [OPTION]... FILE ...

选项:

  • -k:keep, 保留原文件;

  • -d:解压缩;

  • -#:1-9,压缩比,默认为6;

xzcat:

  • 不显式解压缩的前提下查看文本文件内容

演示:

[root@centos7 ~]# xz /tmp/test/messages
[root@centos7 ~]# ll -h /tmp/test/
总用量 96K
-rw-r----- 1 root root   0 2月  20 13:41 a
-rw-rw-rw- 1 root root   0 2月  20 13:41 b.danger
-r--r----- 1 root root   0 2月  20 13:41 c
-rwxrwxr-x 1 root root   0 2月  20 13:41 d
-rwxrwxrwx 1 root root   0 2月  20 13:41 e.danger
-rw-r--r-- 1 root root   0 2月  20 13:41 f
-rw-r--r-- 1 root root   0 2月  20 13:41 g
-rw-r--r-- 1 root root 26K 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41K 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21K 2月  20 16:50 messages.xz

归档工具:tar

 1.归档及常用工具

★归档:

  • 归档就是将多个文件打包为单个文件以便于管理,默认的归档不会执行压缩。

★常用的工具:

  • tar,cpio(不常用)

 2.tar命令

★语法:

  • tar [OPTION...] [FILE]...

创建归档(-c,-f 指定文件):

  • tar -c -f /PATH/TO/SOMEFILE.tar  FILE... (后缀名固定以 .tar 结尾;)

  • tar -cf /PATH/TO/SOMEFILE.tar  FILE... (可以合并写为-cf ,但不能写为 -fc ,因为-f 选项后带参数)

展开归档(-x,-f 指定文件):

  • tar -x -f /PATH/TO/SOMEFILE.tar (展开至归档所在的文件中)

  • tar xf /PATH/TO/SOMEFILE.tar -C /PATH/TO/SOMEFILE (-C :展开归档至指定文件中)

查看归档文件中的列表(-t,-f 指定文件):

  • tar -tf /PATH/TO/SOMEFILE.tar

注意:

  • 多个选项可以合并,但-f由于要带参数,因此要放到最右侧 如:-cf,-xf,-cf;

  • 选项的引导符 "-" 可省略。如:tar xf,tar zf

演示:

[root@centos7 ~]# ls /tmp/test/tao
boot.log  fstab  issue  pacemaker.log  wpa_supplicant.log  Xorg.0.log  yum.log# 对所有以 .log 结尾的文件进行归档
[root@centos7 ~]# tar -cf /tmp/test/mylog.tar /tmp/test/tao/*.log
[root@centos7 ~]# ll /tmp/test/
总用量 136
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:45 mylog.tar   # 归档后的文件
drwxr-xr-x 2 root root   121 2月  20 17:43 tao    # 展开归档
[root@centos7 test]# tar xf mylog.tar
[root@centos7 test]# ll
总用量 176
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:51 mylog.tar
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
drwxr-xr-x 2 root root   121 2月  20 17:43 tao
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log# -C 展开归档至指定文件中
[root@centos7 test]# mkdir /tmp/newtest
[root@centos7 test]# tar xf mylog.tar -C /tmp/newtest
[root@centos7 test]# ll /tmp/newtest
总用量 40
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log# 查看归档文件中的文件列表
[root@centos7 test]# tar tf mylog.tar
boot.log
pacemaker.log
wpa_supplicant.log
Xorg.0.log
yum.log

归档完成后通常需要压缩,结合此前的压缩工具,就能实现压缩多个文件了。

★结合压缩工具实现:归档并压缩:

-z:gzip(后缀名.tar.gz)

  • tar -zcf /PATH/TO/MEFILE.tar.gz FILE...  (创建归档并压缩);

  • tar -zxf /PATH/TO/SOMEFILE.tar.gz   (解压缩并展开归档,z不写也行)

-j:bzip2(后缀名.tar.bz2)

  • -jcf

  • -jxf

-J:xz(后缀名:.tar.xz)

  • -Jcf

  • -Jxf

注意:

  • 展开归档可以直接使用 tar xf ,而无需为其指定对应的压缩工具选项即可

演示:

# 对目录进行归档并压缩
[root@centos7 test]# tar zcf /tmp/test/tao.tar.gz tao
[root@centos7 test]# ll /tmp/test
总用量 184
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:51 mylog.tar
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
drwxr-xr-x 2 root root   121 2月  20 17:43 tao           # 原文件
-rw-r--r-- 1 root root  7232 2月  20 18:15 tao.tar.gz    # 归档压缩后的文件
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log# 删除原文件
[root@centos7 test]# rm -fr tao         # 展开归档,其中 z 可省略,tar命令会自动识别其为压缩文件
[root@centos7 test]# tar xf tao.tar.gz
[root@centos7 test]# ll
总用量 184
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:51 mylog.tar
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
drwxr-xr-x 2 root root   121 2月  20 17:43 tao           # 展开后的文件
-rw-r--r-- 1 root root  7232 2月  20 18:15 tao.tar.gz
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log

zip/unzip

        ---最通用的压缩工具,即可以归档,又能压缩(现在不常用)

★创建归档(.zip后缀):

  • zip file.zip  /PATH/TO/SOMEFILE

★解压缩

  • unzip file.zip

演示:

# 对目录进行归档并压缩
[root@centos7 test]# zip /tmp/test/tao.zip taoadding: tao/ (stored 0%)
[root@centos7 test]# ll
总用量 188
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:51 mylog.tar
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
drwxr-xr-x 2 root root   121 2月  20 17:43 tao
-rw-r--r-- 1 root root  7232 2月  20 18:15 tao.tar.gz
-rw-r--r-- 1 root root   158 2月  20 18:26 tao.zip
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log[root@centos7 test]# rm -fr tao# 解压缩
[root@centos7 test]# unzip tao.zip
Archive:  tao.zipcreating: tao/
[root@centos7 test]# ll
总用量 188
-rw-r--r-- 1 root root 12097 2月  20 17:42 boot.log
-rw-r--r-- 1 root root 26074 2月  20 16:50 messages.bz2
-rw-r--r-- 1 root root 41791 2月  20 16:44 messages.gz
-rw-r--r-- 1 root root 21420 2月  20 16:50 messages.xz
-rw-r--r-- 1 root root 40960 2月  20 17:51 mylog.tar
-rw-r----- 1 root root     0 2月  20 17:42 pacemaker.log
drwxr-xr-x 2 root root     6 2月  20 17:43 tao
-rw-r--r-- 1 root root  7232 2月  20 18:15 tao.tar.gz
-rw-r--r-- 1 root root   158 2月  20 18:26 tao.zip
-rw-r--r-- 1 root root  2800 2月  20 17:42 wpa_supplicant.log
-rw-r--r-- 1 root root 18303 2月  20 17:42 Xorg.0.log
-rw------- 1 root root   105 2月  20 17:42 yum.log

cpio 命令

★cpio

  • cpio命令是通过重定向的方式将文件进行打包备份,还原恢复的工具,它可以解压以“.cpio”或者“.tar”结尾的文件。

★用法:

  • cpio[选项] > 文件名或者设备名

  • cpio[选项] < 文件名或者设备名

★选项:

  • -o:将文件拷贝打包成文件或者将文件输出到设备上;

  • -i:解包,将打包文件解压或将设备上的备份还原到系统;

  • -t:预览,查看文件内容或者输出到设备上的文件内容;

  • -v:显示打包过程中的文件名称;

  • -d:解包生成目录,在cpio还原时,自动的建立目录;

  • -c:一种较新的存储方式

示例:

将etc目录备份:

  • find ./etc-print |cpio -ov> etc.cpio

内容预览

  • cpio–tv < etc.cpio

要解包文件

  • cpio–iv < etc.cpio

  • cpio–idv < etc.cpio

转载于:https://blog.51cto.com/1992tao/1899605

Linux系统压缩及解压缩相关推荐

  1. linux系统压缩与解压缩工具使用方法

    linux系统压缩与解压缩工具包括7z.zip/unzip.rar/unrar 一.7z 安装: 执行以下命令下载安装: wget https://udomain.dl.sourceforge.net ...

  2. 总结Linux系统压缩和解压文件指令——gzip/gunzip 指令、zip/unzip 指令、tar 指令

    Linux系统压缩和解压文件指令 gzip/gunzip 指令:gzip 用于压缩文件, gunzip 用于解压的 基本语法 应用实例 细节说明 zip/unzip 指令:zip 用于压缩文件, un ...

  3. linux系统如何解gz文件,Linux 系统 压缩和解压 gz 格式文件

    Linux 系统 压缩和解压 gz 格式文件 引言 前面我们说了在 Linux 系统上比较常用的打包压缩解压  tar   及 zip 文件 的命令,那 Linux 上还有什么使用比较广泛的压缩解压文 ...

  4. linux 解压tar.jz,linux系统压缩文件和解压缩命令

    linux系统压缩文件和解压缩命令 tar命令 解包:tar zxvf FileName.tar 打包:tar czvf FileName.tar DirName gz命令 解压1:gunzip Fi ...

  5. Linux分卷压缩zip文件命令,Linux分卷压缩与解压缩

    Linux分卷压缩与解压缩 1.rar rar a -m5 -v12m myarchive myfiles # 最大限制为 12M rar e myarchive.part1.rar #解压 分卷压缩 ...

  6. Linux常用压缩与解压缩命令

    .tar 解包:tar xvf FileName.tar 打包:tar cvf FileName.tar DirName (注:tar是打包,不是压缩!) --------------- .gz 解压 ...

  7. Linux中压缩、解压缩(tar/zip/bzip2/gz/gzip/zip)

    源码包一般都是以压缩形式存储的,所以,在获得软件包之后,要进行解压缩.  压缩包也有两种形式,一种是tar.gz包(.tgz包也是这种),一种是tar.bz2包.  tar.gz包的解压方法:tar ...

  8. 文件管理-Linux系统压缩打包

    ZIP压缩工具 TAR压缩工具 TAR实践案例 windows下我们接触最多的压缩文件就是.rar格式, 但Linux有自己所特有的压缩工具 如果希望windows和Linux互相能使用的压缩工具, ...

  9. linux文件压缩、解压缩以及归档

    一.文件压缩.解压缩 1.linux  compress命令(compress/uncompress) (1)压缩文件: [root@server ~]# du -sh passwd1---查看文件大 ...

最新文章

  1. 顶象iOS安全编译器(iOS安全加固神器) ——内测活动开始啦!
  2. CTF杂项之“维吉尼亚密码”
  3. org.apache.hadoop.hbase.PleaseHoldException: Master is initializing(解決方案汇总+自己摸索)
  4. android 转发短信
  5. EasyUI_datagrid
  6. ansible: Linux批量管理神器
  7. 服务连接不上nacos集群_Rust 微服务实践: 连接 rust , nacos , spring cloud
  8. 网络硬盘录像机和数字硬盘录像机区别(nvr dvr ipc区别)
  9. 树莓派 libcurl安装
  10. 鸿蒙 OS 尖刀武器之分布式软总线技术全解析!
  11. Halcon 二维码
  12. 跟公司妹子交流了一下
  13. Java类集框架 —— ArrayList源码分析
  14. Java虚拟机类加载机制--类加载的过程详解
  15. layer时间插件laydate
  16. Java分布式系统框架教程,架构设计
  17. 服务器安装配置lldp协议
  18. [学科总结] 《线性系统理论》
  19. Linux内核性能测试工具全景图
  20. Python:输入身份证号,计算出生日期、年龄、性别(源码+效果图)

热门文章

  1. 国产中标麒麟Linux部署dotnet core 环境并运行项目 (三) 部署运行WEB API项目
  2. java如何实现Socket的长连接和短连接
  3. [Windows Phone] 实作不同的地图显示模式
  4. 不同的容器里实现 RadioButton的单选
  5. mysql redo原子写_InnoDB如何保证redolog的完整性?
  6. Linux 内核定时器实验————复习到这
  7. 安卓APP_ 四大基本组件(1)—— Activity
  8. 安卓APP_ 控件(5)—— ProgressBar
  9. 字符串 hash 唯一数字_【数字课堂】酒妹带你了解“身份认证技术”
  10. python中re.split_Python: str.split()和re.split()的区别