位置: IT常识 - 正文

Linux中文件的压缩与解压缩命令操作示例集锦(linux 文件夹压缩)

编辑:rootadmin
这篇文章主要介绍了Linux中文件的压缩与解压缩命令操作示例集锦,主要针对tar和zip等文件的压缩和解压缩处理,需要的朋友可以参考下... 16-02-26

推荐整理分享Linux中文件的压缩与解压缩命令操作示例集锦(linux 文件夹压缩),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:linux中文件压缩,linux 文件夹压缩,linux压缩文件,linux对文件进行压缩的命令,linux对文件进行压缩的命令,linux系统文件压缩命令,linux系统文件压缩命令,linux中的压缩文件格式,内容如对您有帮助,希望把文章链接给更多的朋友!

所谓压缩就是将原有的文件通过不同的编码技术进行运算,以减少数据存储所需要的空间,使用前再利用解压缩还原源文件的内容即可。和windows一样,在linux下也存在多种压缩与解压缩方法。

1、zip压缩与解压缩 zip是最为广泛使用的压缩程序,经它压缩的文件会产生扩展名为zip的压缩文件,而且这种格式在多种系统上可以使用,像windows中的winzip 下面看一下在linux中如何建立zip文件。 我们在终端中输入zip会出现这个命令的一些介绍和参数的意义。

代码如下:xiaopeng@ubuntu:~/test$ zipCopyright (c) 1990-2006 Info-ZIP-Type 'zip "-L"' for software license.Zip 2.32 (June 19th 2006). Usage:zip [-options] [-b path] [-t mmddyyyy] [-n suffixes] [zipfile list] [-xi list] The default action is to add or replace zipfile entries from list, which can include the special name-to compress standard input. If zipfile and list are omitted, zip compresses stdin to stdout. -f freshen: only changed files -u update: only changed or new files -d delete entries in zipfile -m move into zipfile (delete files) -r recurse into directories -j junk (don't record) directory names -0 store only -l convert LF to CR LF (-ll CR LF to LF) -1 compress faster -9 compress better -q quiet operation -v verbose operation/print version info -c add one-line comments -z add zipfile comment -@ read names from stdin -o make zipfile as old as latest entry -x exclude the following names -i include only the following names -F fix zipfile (-FF try harder) -D do not add directory entries -A adjust self-extracting exe -J junk zipfile prefix (unzipsfx) -T test zipfile integrity -X eXclude eXtra file attributes -y store symbolic links as the link instead of the referenced file -R PKZIP recursion (see manual) -e encrypt -n don't compress these suffixes

下面我们就最简单的实验一下。我们就是把当前目录下文件名以test开头的所有文件压缩文一个文件,并可以查看一下压缩比。(红色是我的注释)

代码如下:xiaopeng@ubuntu:~/test$ ls -lh

总用量 24K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4代码如下:xiaopeng@ubuntu:~/test$ zip test.zip test*

zip命令后面先跟压缩后的文件名,这里是test.zip,当然后缀名不是必须的。然后跟要压缩的文件名。这里用的test*指的是全部以test开头的文件,包括test1 test2 test3 test4 adding: test1 (deflated 30%) 这里显示的是压缩比 adding: test2 (deflated 65%) adding: test3 (deflated 64%) adding: test4 (deflated 73%) 大体可以看出源文件越大,压缩比就越大

代码如下:xiaopeng@ubuntu:~/test$ ls -lh

总用量 32K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4-rw-r--r-- 1 xiaopeng xiaopeng 5.0K 2009-06-25 14:17 test.zipxiaopeng@ubuntu:~/test$

上面是压缩了相同类型的文件,其实也可以把不同类型的文件压缩到一起。有时候为了节省硬盘空间,可以在建立压缩文件后,自动删除原始文件,此时只要带一个 -m 的参数就可以。

代码如下: xiaopeng@ubuntu:~/test$ ls -lh

总用量 24K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4xiaopeng@ubuntu:~/test$ zip -m test.zip test* 带参数-mupdating: test1 (deflated 30%)updating: test2 (deflated 65%)updating: test3 (deflated 64%)updating: test4 (deflated 73%)xiaopeng@ubuntu:~/test$ ls -lh

总用量 8.0K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 5.0K 2009-06-25 14:26 test.zipxiaopeng@ubuntu:~/test$

可以看出 原始文件已经被删除,只有压缩文件留下了。 在压缩一些目录的时候,经出在目录中会有子目录,此时根据子目录中的文件是否压缩分为两种情况,一种是压缩,一种是忽略自录中的内容,如果选择压缩子目录,则使用-r参数,如果不压缩,则使用-j 参数下面举例,一个是-r 一个是-j

代码如下:xiaopeng@ubuntu:~/test$ ls -lh

总用量 28K

代码如下:drwxr-xr-x 2 xiaopeng xiaopeng 4.0K 2009-06-25 14:31 pdf-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4xiaopeng@ubuntu:~/test$ zip -r test.zip * 压缩当前目录所有内容,r 参数说明pdf这个子目录中的内容也压缩 adding: pdf/ (stored 0%) adding: pdf/case_Contact.pdf (deflated 10%) adding: pdf/case_KRUU.pdf (deflated 9%) adding: pdf/case_howard_county_library.pdf (deflated 24%) adding: test1 (deflated 30%) adding: test2 (deflated 65%) adding: test3 (deflated 64%) adding: test4 (deflated 73%) xiaopeng@ubuntu:~/test$

下面的情况是子目录不压缩

代码如下: xiaopeng@ubuntu:~/test$ ls -l

总用量 28

代码如下: drwxr-xr-x 2 xiaopeng xiaopeng 4096 2009-06-25 14:31 pdf-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1233 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3412 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 10091 2009-06-25 14:14 test4xiaopeng@ubuntu:~/test$ zip -j test.zip * adding: test1 (deflated 30%) adding: test2 (deflated 65%) adding: test3 (deflated 64%) adding: test4 (deflated 73%)

子目录pdf被忽略

代码如下:xiaopeng@ubuntu:~/test$

令外一个技巧: 某些文件因为编码的原因,已经大幅的减少了文件的大小,如GIF,JPG 等格式,在用zip压缩几乎没什么作用而浪费了时间,此时可一用-n参数直接保存这些文件而不压缩。例如:

代码如下:xiaopeng@ubuntu:~/test$ ls -lh

总用量 68K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 18K 2009-06-04 21:18 duality.jpg-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 14:13 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4-rw-r--r-- 1 xiaopeng xiaopeng 23K 2009-06-10 15:07 test.jpgxiaopeng@ubuntu:~/test$ zip -n .jpg test.zip * adding: duality.jpg (stored 0%) adding: test1 (deflated 30%) adding: test2 (deflated 65%) adding: test3 (deflated 64%) adding: test4 (deflated 73%) adding: test.jpg (stored 0%)

jpg格式的没有压缩而是直接保存了

代码如下:xiaopeng@ubuntu:~/test$

如果需要直接保存的格式多于一个,可以用冒号隔开 如: -n .jpg: .mpg

Linux中文件的压缩与解压缩命令操作示例集锦(linux 文件夹压缩)

小技巧,有时候一个目录下要压缩的文件很多,但是有那么很少的几个不压缩,那么我们可以用-x参数来排除这几个不压缩的。例如

代码如下:xiaopeng@ubuntu:~/test$ lsduality.jpg test1 test2 test3 test4 test.jpg test.zipxiaopeng@ubuntu:~/test$ zip -n .jpg test.zip * -x test2 不压缩test2updating: duality.jpg (stored 0%)updating: test1 (deflated 30%)updating: test3 (deflated 64%)updating: test4 (deflated 73%)updating: test.jpg (stored 0%)xiaopeng@ubuntu:~/test$

可以看到test2没有被压缩,而是直接跳过了它。

压缩链接,zip会先读取该链接的指向的原文件的内容,然后再压缩,而且压缩完了,该链接也就不存在了。

另外,压缩率也是可以调整的。等级是1到9,1最低,9最高,默认是6 。我们可以用1和9来比较下,压缩率。

代码如下:xiaopeng@ubuntu:~/test$ zip -1 low.zip * adding: test1 (deflated 30%) adding: test2 (deflated 63%) adding: test3 (deflated 62%) adding: test4 (deflated 70%)xiaopeng@ubuntu:~/test$ zip -9 high.zip * adding: low.zip (deflated 4%) adding: test1 (deflated 30%) adding: test2 (deflated 65%) adding: test3 (deflated 64%) adding: test4 (deflated 73%)

因为文件都比较小,效果不是很明显,但是9的压缩率确实高了一点点。 压缩率高,节省空间,但是压缩时间要长,压缩率低,节省空间少,但是用时间少,所以我们要合理选择压缩率,一般都用默认。

zip文件解压缩。这个比较简单,就是unzip命令。

代码如下:xiaopeng@ubuntu:~/test$ lstest.zipxiaopeng@ubuntu:~/test$ unzip test.zipArchive: test.zip inflating: test1 inflating: test2 inflating: test3 inflating: test4 xiaopeng@ubuntu:~/test$

当然也可以用-x参数来指定哪个文件不需要压缩。

代码如下:xiaopeng@ubuntu:~/test$ unzip test.zip -x test3 test3不需要压缩出来Archive: test.zip inflating: test1 inflating: test2 inflating: test4 xiaopeng@ubuntu:~/test$

还有一个很有用的参数,-Z ,注意是大写的Z 。作用是查看压缩文件的内容。就像windows中的winzip,我们不用解压缩,也可以打开看看里面有什么文件,文件的类型什么。比如我想看看test.zip里面的内容,而又不想把这个解压缩了再看,可以如下操作。

代码如下:xiaopeng@ubuntu:~/test$ unzip -Z test.zipArchive: test.zip 5069 bytes 4 files-rw-r--r-- 2.3 unx 212 tx defN 25-Jun-09 14:13 test1-rw-r--r-- 2.3 unx 1233 tx defN 25-Jun-09 14:13 test2-rw-r--r-- 2.3 unx 3412 tx defN 25-Jun-09 14:14 test3-rw-r--r-- 2.3 unx 10091 tx defN 25-Jun-09 14:14 test44 files, 14948 bytes uncompressed, 4567 bytes compressed: 69.4%xiaopeng@ubuntu:~/test$

当然除了这些参数外,还有很多参数可以使用,这里就不一一实验了,我们可以在使用的过程中加以掌握。

2、zip与 tar 如果你在Linux里面安装过软件压缩包,对这个以.tar.gz为后缀的压缩文件不会陌生,比如我们在Linux QQ 的下载页面http://im.qq.com/qq/linux/download.shtml ,就会看到其中一个安装包就是.tar.gz包。 这种包带两个后缀是有原因的,gz和tar 是分别由两种程序产生的。gz时由gzip压缩而成的压缩文件,压缩效果和zip差不多,但是和zip最大的不同在于,gzip无法把很多个单一文件压缩成一个单一文件,所以tar就有了用武之地,tar不是什么压缩程序,它是用来打包文件的。tar和gzip一见如故,两个人合作起来实现压缩,也就是当多个文件压缩时,先用tar把这些文件打包,成为.tar的包,然后再由gzip压缩这个包,于是就有了.tar.gz的文件格式。

首先先看一下gzip和 gunzip的应用。gzip的用法很简单,后面加上要压缩的文件名就行。

代码如下:xiaopeng@ubuntu:~/test$ ls -lh

总用量 24K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 212 2009-06-25 15:49 test1-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4xiaopeng@ubuntu:~/test$ gzip test1xiaopeng@ubuntu:~/test$ ls -lh

总用量 24K

代码如下:-rw-r--r-- 1 xiaopeng xiaopeng 173 2009-06-25 15:49 test1.gz-rw-r--r-- 1 xiaopeng xiaopeng 1.3K 2009-06-25 14:13 test2-rw-r--r-- 1 xiaopeng xiaopeng 3.4K 2009-06-25 14:14 test3-rw-r--r-- 1 xiaopeng xiaopeng 9.9K 2009-06-25 14:14 test4

注意和zip的不同,只要在命令后加上要压缩的文件名即可,系统会自动为生成的压缩文件起名为原文件名加后缀.gz ,而且原文件在压缩完成后会被删除。 解压缩用gunzip

代码如下:xiaopeng@ubuntu:~/test$ gunzip *.gzxiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4xiaopeng@ubuntu:~/test$

完成后以前的压缩文件test1.gz也会被删除。 同样gzip在解压前也可以查看文件内容,用参数-l, gzip也支持压缩率修改,为1到9,和zip相同。

下面看tar的用应。tar是用来打包文件的,打包后的包的大小和以前所有原文件大小的和是相等的,(其实大小是不相等的,打完包后的大小大于源文件的大小和,这个可以验证一下。《Ubuntu 入门到精通》说一样大,显然是不对的)也就是说tar没有压缩的效果。tar有非常多的参数,可以通过在线帮助文档查看,或者用--help命令查看。这里我们只用简单用到几个。 首先是多个文件打包。看例子。

代码如下:xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4xiaopeng@ubuntu:~/test$ tar -cvf test.tar *

是把当前目录下的所有文件打包成test.tar 几个参数的意义为: c(Creat)建立新文件 v(Verbose)显示命令执行时的信息 f(File)指定打包为文件形式。

代码如下:test1test2test3test4代码如下:xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4 test.tarxiaopeng@ubuntu:~/test$

要解开tar文件,只需把参数中的c改为x(eXtract)即可

代码如下:xiaopeng@ubuntu:~/test$ ls test.tarxiaopeng@ubuntu:~/test$ tar -xvf test.tartest1test2test3test4xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4 test.tarxiaopeng@ubuntu:~/test$

下面我们看一下tar和gzip合作完成对4个文件的压缩。步骤是先用tar打包,然后对这个.tar包用gzip压缩,最后得到.tar.gz文件。例子:

代码如下:xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4xiaopeng@ubuntu:~/test$ tar cvf test.tar * 首先打包成test.tartest1test2test3test4xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4 test.tarxiaopeng@ubuntu:~/test$ gzip test.tar 把test.tar用gzip压缩成test.tar.gz 压缩包。xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4 test.tar.gzxiaopeng@ubuntu:~/test$

解压.tar.gz包时,和压缩过程相反,现解压,再tar把包打开。

代码如下:xiaopeng@ubuntu:~/test$ lstest.tar.gzxiaopeng@ubuntu:~/test$ gunzip test.tar.gz 先用gunzip把.tar.gz包解压缩xiaopeng@ubuntu:~/test$ lstest.tarxiaopeng@ubuntu:~/test$ tar xvf test.tar 然后用tar把.tar包打开test1test2test3test4xiaopeng@ubuntu:~/test$ lstest1 test2 test3 test4 test.tarxiaopeng@ubuntu:~/test$

还可以tar 和gzip同时实现的,只要在tar参数加一个z即可 tar -xvfz test.tar.gz 即可实现上面两个命令的功能。

还是比较好理解的。

本文链接地址:https://www.jiuchutong.com/zhishi/277941.html 转载请保留说明!

上一篇:Win10 KB5005033 给某些用户带来了新问题的解决方法

下一篇:Win11如何清空剪贴板数据 Win11清空剪贴板数据的方法(win10怎么清理剪切板)

  • 苹果13怎么清除最近运行(苹果13怎么清除看过的东西)

    苹果13怎么清除最近运行(苹果13怎么清除看过的东西)

  • excel怎么截图选中区域(excel怎么截图选中区域保存到桌面)

    excel怎么截图选中区域(excel怎么截图选中区域保存到桌面)

  • 微信怎么设置好友专属提示音(微信怎么设置好友打不进来视频)

    微信怎么设置好友专属提示音(微信怎么设置好友打不进来视频)

  • 华为Mate X2各版本的售价是多少

    华为Mate X2各版本的售价是多少

  • 抖音显示已读是什么意思(抖音显示已读是苹果手机吗)

    抖音显示已读是什么意思(抖音显示已读是苹果手机吗)

  • wps表格如何查找指定内容(wps表格如何查找替换)

    wps表格如何查找指定内容(wps表格如何查找替换)

  • 华为手机莫名其妙自动重启(华为手机莫名其妙黑屏)

    华为手机莫名其妙自动重启(华为手机莫名其妙黑屏)

  • oppoa8是快充吗(opopa8有快充吗)

    oppoa8是快充吗(opopa8有快充吗)

  • 13.2.3更新了什么(ios13.2.3更新了什么)

    13.2.3更新了什么(ios13.2.3更新了什么)

  • qq好友备注变成qq号(好友备注变成qq号,但是显示还是好友)

    qq好友备注变成qq号(好友备注变成qq号,但是显示还是好友)

  • 笔记本没网怎么办(笔记本没网怎么开热点)

    笔记本没网怎么办(笔记本没网怎么开热点)

  •  p30桌面天气怎么设置(p30天气怎么显示在桌面)

    p30桌面天气怎么设置(p30天气怎么显示在桌面)

  • 华为手机防抖功能怎么打开(华为手机防抖功能在哪里找)

    华为手机防抖功能怎么打开(华为手机防抖功能在哪里找)

  • 官网买的ipad激活了还能退吗(官网买的ipad已经激活怎么回事)

    官网买的ipad激活了还能退吗(官网买的ipad已经激活怎么回事)

  • 小米平板4lte版可以打电话吗(小米平板4lte版参数)

    小米平板4lte版可以打电话吗(小米平板4lte版参数)

  • word文档改不了数字(word文档改不了行间距是怎么回事)

    word文档改不了数字(word文档改不了行间距是怎么回事)

  • 小米mix2s有息屏显示功能吗(小米mix2s灭屏显示时间在哪)

    小米mix2s有息屏显示功能吗(小米mix2s灭屏显示时间在哪)

  • 荣耀9x人脸解锁在哪(荣耀9x人脸解锁摄像头有弹出来吗?)

    荣耀9x人脸解锁在哪(荣耀9x人脸解锁摄像头有弹出来吗?)

  • 淘宝号违规了能解除吗(淘宝账号违规了对买东西有什么影响吗)

    淘宝号违规了能解除吗(淘宝账号违规了对买东西有什么影响吗)

  • 苹果usb-c是什么意思(苹果usbc是什么接口)

    苹果usb-c是什么意思(苹果usbc是什么接口)

  • iphone xs怎么实现双卡(苹果xs教程)

    iphone xs怎么实现双卡(苹果xs教程)

  • excel 两列对比(excel两列对比相同的 则输出另一列)

    excel 两列对比(excel两列对比相同的 则输出另一列)

  • 华为p30pro的屏幕(华为p30pro的屏幕是什么材质的)

    华为p30pro的屏幕(华为p30pro的屏幕是什么材质的)

  • Vue 中 iconfont 使用(vue中的icon)

    Vue 中 iconfont 使用(vue中的icon)

  • free命令  显示系统内存使用量情况(free命令看到的内存)

    free命令 显示系统内存使用量情况(free命令看到的内存)

  • 纳税检查调整的滞纳金怎么收
  • 2019年大写二o一九
  • 固定资产用于集体福利也算经营管理需要吗
  • 公司租赁的车辆发生的费用都可以报销吗?
  • 电子缴税付款凭证怎么做账
  • 原材料没发票能结转成本吗?
  • 退回剩余工程物资计入什么科目
  • 发行股票所支付的手续费计入
  • 交易性金融资产借贷方向
  • 小微企业劳务费税率
  • 固定资产评估增值递延所得税
  • 消费税征收范围注释
  • 关于个人财产转让的规定
  • 新公司注册后先开户还是先税务登记
  • 新公司没有实收资本,他的钱从哪来
  • 实收资本是否可以更改
  • 备件和耗材的定义
  • 企业所得税增值税完税证明
  • 自行生产的存货转固定资产怎么做账
  • 公司支付给法院要交税吗
  • 专项附加扣除如何自行申报
  • 苹果手机送修了会给备用机吗
  • Windows 2003 SP2 简体中文版下载地址
  • yolov5网络优化
  • php __callstatic
  • 成本结转的科目
  • 换股的具体方式是什么
  • php出栈函数
  • 怎么做外资企业赚钱
  • php close
  • navicat的安装
  • 税局 不负责任
  • html制作网页教程
  • 达尔文岛在地图上位置
  • 增值税进项发票丢失最新处理办法
  • 增值税和所得税重复交了吗
  • expdp/impdp oracle数据泵导入导出
  • 最强alpha什么意思
  • 收到境外服务费可以退税吗
  • 保险公司应收保费汇报范文
  • 宝塔面板要安装什么环境
  • 微擎框架是开源的吗
  • 会计分录格式范本手写
  • wordpress隐藏内容付费可见
  • 如何检查文件是否有毒
  • 如何对php网站页面进行修改
  • Mysql存储过程中的如何遍历一个查询结果集
  • 一般纳税人每月开票不能超过多少
  • 小规模纳税人未开票收入如何申报增值税
  • 新增项目和延续项目
  • 宣传费税前扣除什么意思
  • 存货计提存货跌价准备
  • 退回投标保证金在投诉阶段怎么办
  • 代理进口产品
  • 跨年的社保,账务怎么处理?
  • 装修费用摊销计入什么科目
  • 主营业务收入一定要结转成本吗
  • 利润率百分百是什么意思
  • 基本户转法人个人账户如何做账
  • 改制后的企业
  • 哪些账簿可以跨市登记
  • mysql80安装配置教程
  • windos基于
  • win8.1怎么关闭更新
  • win10虚拟桌面版
  • win10高对比度设置点了没反应
  • awk两个文件关联合并
  • linux比较两个文件的差异
  • win10edge浏览器怎么设置兼容模式
  • win10系统声音怎么打开
  • jquery中attr和prop
  • ai人工智能python
  • Vuforia 4.0 beta——Object Recognition (一)
  • android系统介绍
  • unity dc
  • dom操作的方法
  • 江苏差旅费报销管理规定2021
  • 四川税务申报如何网上申报零申报
  • 股权收购的好处
  • 上海浦东税务网站官网
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设