码迷,mamicode.com
首页 >  
搜索关键字:filename    ( 7326个结果
C# Body为form-data file文件上传至第三方接口
1.第三方提供了这么一个API接口,POST后将附件以file文件上传,通过postman工具界面是下面这种样子 Body为form-data类型,不管是文本还是文件,都能在value上填上去 2.C#实现接口调用代码 public static string PostForm(string url ...
分类:Windows程序   时间:2021-05-24 12:41:36    阅读次数:0
nginx 配置html后缀当php解析
修改php-fpm.conf security.limit_extensions = .php .html 查看php-fpm.conf内listen,如果是端口则nginx.conf server内容为 location ~ \.php|\.html(.*)$ { fastcgi_pass 127 ...
分类:Web程序   时间:2021-05-24 09:26:26    阅读次数:0
获取手机尺寸
[获取手机尺寸](https://www.runoob.com/try/try.php?filename=tryjs_screen_all) ...
分类:移动开发   时间:2021-05-24 06:52:54    阅读次数:0
Java实现CURL,与把字符串结果写到json文件
@Override public String getUrlRestInfo(String[] command, String fileName) { //新建一个StringBuffer StringBuffer sb = new StringBuffer(); //过程 Process pro ...
分类:编程语言   时间:2021-05-24 06:50:41    阅读次数:0
linux 删除文件夹下文件
1:删除当前目录下 后缀为 ”.***“的文件 find -name "*.txt" -exec rm -f '{}' \; 删除后缀为.txt的文件 2:清空某个文件的内容 echo "" > filename ...
分类:系统相关   时间:2021-05-24 02:31:05    阅读次数:0
文件的完整性校验
windows下文件校验: certutil -hashfile filename MD5 certutil -hashfile filename SHA1 certutil -hashfile filename SHA256 linux 下文件校验: md5sum file1 file2 当两个文 ...
分类:其他好文   时间:2021-05-24 02:29:27    阅读次数:0
数据恢复系列~并行应用离线binlog
0基础环境 本文是基于阿里云的备份做的 1 全量备份文件xtrabackup 2 离线的你需要的所有binlog 1 建立备份实例 1 解压 2 apply-log 3 调整配置文件 skip-grant-tables=1 log-bin=mysql-bin gtid_mode=on enforce ...
分类:其他好文   时间:2021-05-24 01:56:37    阅读次数:0
Lumberjack切割日志
Lumberjack切割日志 2021年5月8日10:04 接上篇 https://www.cnblogs.com/rabbithacker/p/zap_logger.html 首先安装Lumberjack:go get -u github.com/natefinch/lumberjack 使用: ...
分类:其他好文   时间:2021-05-24 01:24:04    阅读次数:0
Gvim操作记录
Linux环境下的gvim编辑器的优势就不多说了。至于我,一个字懒,不想记住gvim的指令,但一想到以后工作还是要用到,还是硬着头皮学吧! 1 gvim基本操作 1.1 基本模式 gvim 有两个基本的模式:Insert 和Normal。Insert模式下光标是竖线,这时键盘的输入为文本。Norma ...
分类:系统相关   时间:2021-05-04 16:26:16    阅读次数:0
CI 压缩zip中文乱码
几种情况: 1.window可以 liunx乱码 检查文件写入文件夹时已经是乱码 解决方法:写入文件的时候转码 iconv('utf-8', 'gb2312','中文名称'); 2.window乱码 检查文件写入文件夹时已经是乱码 如果不是乱码 把代码传到服务器上面测试 是否正常能导出中文 如果还是 ...
分类:其他好文   时间:2021-05-03 11:47:58    阅读次数:0
7326条   上一页 1 ... 3 4 5 6 7 ... 733 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!