1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename ...
分类:
系统相关 时间:
2021-05-24 02:31:05
阅读次数:
0
算法过程 代码实现 /************************************************************************ File name: SM3.c Version: SM3_V1.1 Date: Sep 18,2016 Description: ...
分类:
其他好文 时间:
2021-05-24 02:25:02
阅读次数:
0
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Configuration;using System.Data.Common;using ...
分类:
数据库 时间:
2021-05-24 02:07:55
阅读次数:
0
有时候我们想要在spring启动后就做一些初始化配置,或者启动一个常住线程,这个时候需要定义一个类,且实现ApplicationRunner接口 @Component public class ZKMasterClient implements ApplicationRunner{ private ...
分类:
编程语言 时间:
2021-05-24 02:02:16
阅读次数:
0
1. 全部导出 <div class="toexcel"> <el-button @click="exportExcel" type="primary" class="button" style="width:70px;position:absolute;top:0;right:30px" >导出< ...
分类:
其他好文 时间:
2021-05-24 01:58:02
阅读次数:
0
反编译出文件和.nsi脚本 【工具】 7z 15.05版 【下载地址】 https://sourceforge.net/projects/sevenzip/files/7-Zip/15.05/ https://jaist.dl.sourceforge.net/project/sevenzip/7-Z ...
分类:
其他好文 时间:
2021-05-24 01:52:45
阅读次数:
0
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
一个简单的解决方案是:不管是服务端还是客户端,在web.config下 的system.serviceModel标签下方增加一个没有设置名字的Binding默认配置就行了。 具体配置如下: <system.serviceModel> <bindings> <basicHttpBinding> <bi ...
分类:
其他好文 时间:
2021-05-24 01:40:24
阅读次数:
0
原因是最近xlrd更新到了2.0.1版本,只支持.xls文件。所以x1 = xlrd.open_workbook("data.xlsx")会报错。 可以安装旧版xlrd,在cmd中运行: 建议直接卸载新版本,下载xlrd旧版本 pip uninstall xlrd pip install xlrd= ...
分类:
其他好文 时间:
2021-05-24 01:37:35
阅读次数:
0
问题描述 在此之前,我已经解决过 Ubuntu20.04.2无法启动xrdp click here,并且已经能够成功远程桌面连接了。 但是,经过某些操作,突然又不行了。 问题分析 虚拟机Ubuntu系统,需要 xrdp 和 xrdp-sesman 服务都是启动的情况下,才能正常进行远程桌面连接。 我 ...
分类:
系统相关 时间:
2021-05-24 01:35:11
阅读次数:
0