码迷,mamicode.com
首页 >  
搜索关键字:filename    ( 7326个结果
Git基本操作(一)
Git 使用(一) - git init 初始化仓库 - git status 仓库状态 - git add filename 单个文件加入暂存 - git add. 全部加入暂存 - git commit -m <message> 添加描述 - git log 查看日志 - git reset I ...
分类:其他好文   时间:2020-06-24 23:31:02    阅读次数:72
apache PHP 隐藏 index.php 报错 No input file specified. 解决办法
在.htaccess中修改(如果是框架,则在public下的.htaccess) <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} ...
分类:Web程序   时间:2020-06-24 17:47:41    阅读次数:63
Python3之 contextlib
Python中当我们们打开文本时,通常会是用with语句,with语句允许我们非常方便的使用资源,而不必担心资源没有关闭。with open('/path/filename', 'r') as f: f.read()然而,并不是只有open()函数返回fp对象才能使用 with 语句。实际上,任何对... ...
分类:编程语言   时间:2020-06-23 19:35:30    阅读次数:50
linux压缩和解压缩命令
tar 解包:tar zxvf filename.tar 打包:tar czvf filename.tar dirnamegz命令 解压1:gunzip filename.gz 解压2:gzip -d filename.gz 压缩:gzip filename .tar.gz 和 .tgz 解压:ta ...
分类:系统相关   时间:2020-06-22 19:26:18    阅读次数:69
下载压缩包文件
/** * 大纲附件1 * * @param mapping * @param form * @param request * @param response * @return */ @SuppressWarnings("rawtypes") public ActionForward dgfjxz ...
分类:其他好文   时间:2020-06-22 15:45:14    阅读次数:276
java 下载excel模板
1.我们把需要下载的的excel 模板放在resource下面,模板要什么样子自己修改excel就好 1.接下来我们读取需要下载的excel模板就好 String fileName="test";ClassPathResource classPathResource = new ClassPathR ...
分类:编程语言   时间:2020-06-22 15:23:41    阅读次数:313
Linux ANSI转 UTF8
1. 查看文件编码格式 file -i filename 其中 charset=iso-8859-1 就是ansi的文件格式 如何转化为 UTF-8 iconv -f ansi -t utf8 xxxx.csv -o xxxx2.csv 转化后就变为正常显示. 可用于导HIVE前文件格式的转换 ...
分类:系统相关   时间:2020-06-22 13:09:10    阅读次数:102
zabbix (3)
说明:继续zabbix4.0的数据抽取展示测试。对python不熟练,所以先参考网友脚本,抽取zabbix数据,生成excel表格。脚本如下:#/usr/bin/envpython#-*-coding:utf-8-*-importMySQLdbimportxlsxwriterimporttimehost_list=[‘192.168.164.131‘,‘192.168.164.132‘]defsq
分类:其他好文   时间:2020-06-22 09:17:35    阅读次数:52
利用installEventFilter安装全局事件过滤器
www.qt-ui.com 原创技术文章 当我们需要处理窗口以外的全局键盘和鼠标事件的时候,我们可以通过installEventFilter在QApplication上安装事件过滤器来进行处理。 调用示例如下: UIGQtPOSLogin::UIGQtPOSLogin(QWidget *parent ...
分类:其他好文   时间:2020-06-21 14:18:17    阅读次数:107
三年Git使用心得 & 常见问题整理,80%的人都不懂
Git 流程图 Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 配置 Git:另外技术是不断更新的。在此赠送2020最新企业级别Vue3.0/Js/ES6/TS/React/node等实战视频教程,想学的可进裙 51 ...
分类:其他好文   时间:2020-06-21 11:56:51    阅读次数:99
7326条   上一页 1 ... 27 28 29 30 31 ... 733 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!