在 /etc/init.d 目录下建立 GetLocalip.py 文件 #coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header import socket ...
分类:
其他好文 时间:
2021-01-20 11:43:31
阅读次数:
0
一.JSP内置对象 request:表示一次请求,HttpServletRequest response:表示一次响应,HttpServletResponse pagecontext:页面上下文,获取页面信息,PageContext session:表示一次会话,保存用户信息,HttpSession ...
分类:
Web程序 时间:
2021-01-20 11:39:58
阅读次数:
0
package test;import java.sql.*;public class retrieve { public static void main(String[] args) { try { Class.forName("com.mysql.jdbc.Driver"); } catch ...
分类:
数据库 时间:
2021-01-18 11:27:02
阅读次数:
0
文件读写包括:文件打开(open),模式(文件读(r,r+),文件写(w,w+),文件追加(a)),文件关闭(close()),字符集(encoding=UTF-8),流程管理函数with(),文件的相对路径和绝对路径 open():open打开的文件是一个流,只能被read()函数消费一次,如果需 ...
分类:
编程语言 时间:
2021-01-14 10:31:00
阅读次数:
0
0 课程地址 https://coding.imooc.com/lesson/380.html#mid=28221 1 个人收获 2 课程内容 2.1 Redis速度快的原因: 1.完全基于内存操作(快于硬盘操作)2.数据结构简单3.单线程,避免了上下文状态切换没有上锁而影响性能4.多路I0复用模型 ...
分类:
编程语言 时间:
2021-01-12 11:18:10
阅读次数:
0
public string GetMD5(string txt) { System.Security.Cryptography.MD5 md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] frmData ...
# #!/usr/bin/env python # # coding: utf-8 # # https://www.cnblogs.com/scolia/p/6132950.html import threading import time import signal def set_timeout ...
分类:
编程语言 时间:
2021-01-11 10:54:45
阅读次数:
0
super() 函数是用于调用父类(超类)的一个方法。 super() 是用来解决多重继承问题的,直接用类名调用父类方法在使用单继承的时候没问题,但是如果使用多继承,会涉及到查找顺序(MRO)、重复调用(钻石继承)等种种问题。 实例: #!/usr/bin/python # -*- coding: ...
分类:
编程语言 时间:
2021-01-11 10:49:33
阅读次数:
0
# -*- coding: UTF-8 -*- ''' @Project -> File :MyDjango -> cos_upload_demo @IDE :PyCharm @Author :ruochen @Date :2020/7/17 11:52 @Desc : ''' from qclou ...
分类:
其他好文 时间:
2021-01-08 11:43:55
阅读次数:
0
#!/usr/bin/python #coding=utf-8 #好好学习,天天向上 a = 1 while a <= 6: print(a) a = a + 1 #!/usr/bin/python #coding=utf-8 #好好学习,天天向上 a = 1 while a <= 6: a = a ...
分类:
编程语言 时间:
2021-01-07 12:09:58
阅读次数:
0