# -*- coding: UTF-8 -*- ''' @Project -> File :CMDB -> collect_windows_info.py @IDE :PyCharm @Author :XuMou @Date :2020/7/30 12:57 ''' import platform ...
分类:
编程语言 时间:
2020-07-30 14:20:21
阅读次数:
80
1 # #!/usr/bin/python3 2 # -*- coding: utf-8 -*- 3 # @Time : 2020/7/30 9:07 4 # @Author : Gengwu 5 # @FileName: Keys_Option.py 6 # @Software: PyCharm ...
分类:
编程语言 时间:
2020-07-30 10:48:30
阅读次数:
124
# coding=utf-8 # This script is uesd to modify Agent IP at the first time of machine started. import requests import json import time import os import ...
分类:
其他好文 时间:
2020-07-29 17:54:47
阅读次数:
80
config 配置 1 # -*- coding = utf-8 -*- 2 # @Time : 2020/7/28 17:51 3 # @Author : 贾伟文 4 # @File : config.py 5 # @Software : PyCharm 6 7 DB_URI = 'mysql:/ ...
分类:
其他好文 时间:
2020-07-29 10:28:10
阅读次数:
67
整合spring和springmvc 1、在web.xml中添加spring监听器 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http:/ ...
分类:
其他好文 时间:
2020-07-29 10:18:29
阅读次数:
53
Socket层 Socket有一个缓冲区,缓冲区是一个流,先进先出,发送和取出的可自定义大小的,如果取出的数据未取完缓冲区,则可能存在数据怠慢。造成粘包的问题 黏包问题:文件大小和文件内容,一起在缓冲区发送给服务端,就会产生粘包的现象 Socket发送两条连续数据时,可能最终会拼接成一条进行发送 解 ...
分类:
其他好文 时间:
2020-07-28 22:26:39
阅读次数:
69
28-Jul-2020 11:44:56.960 严重 [http-nio-8080-exec-1] org.apache.catalina.core.StandardWrapperValve.invoke 在路径为的上下文中,Servlet[jsp]的Servlet.service()引发了具有根 ...
分类:
编程语言 时间:
2020-07-28 14:45:05
阅读次数:
609
使用文档 # -*- coding:utf-8 -*- #! python2 import shutil a=0 readDir = r"D:\pycharm-project\my-project\test\thefile2018-11-27.sh" writeDir = r"D:\pycharm- ...
分类:
其他好文 时间:
2020-07-28 14:00:53
阅读次数:
62
#!-*-coding:utf-8-*- from configparser import ConfigParser cfg = ConfigParser() cfg.read('config.ini') # 获取指定section 的option值 #第一参数是section 第二个参数是opti ...
分类:
其他好文 时间:
2020-07-28 13:58:54
阅读次数:
57
#!/usr/bin/python import requests if __name__ == "__main__": url = 'https://sogou.com' response = requests.get(url=url) page_text = response.text prin ...
分类:
其他好文 时间:
2020-07-28 10:18:26
阅读次数:
68