码迷,mamicode.com
首页 >  
搜索关键字:coding    ( 12955个结果
Servlet[jsp]的Servlet.service()引发了具有根本原因的异常无法在web.xml或使用此应用程序部署的jar文件中解析绝对uri:[http://java.sun.com/jsp/jstl/core]
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
shutil文件去重模块
使用文档 # -*- 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
configparser 配置文件模块
#!-*-coding:utf-8-*- from configparser import ConfigParser cfg = ConfigParser() cfg.read('config.ini') # 获取指定section 的option值 #第一参数是section 第二个参数是opti ...
分类:其他好文   时间:2020-07-28 13:58:54    阅读次数:57
requests模块使用
#!/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
python版本的mysql text resultset row协议代码实现
import struct,sys from socket import * from contextlib import closing import hashlib,os from functools import partial from prettytable import PrettyTa ...
分类:数据库   时间:2020-07-28 00:00:14    阅读次数:92
PerfDog4.0探索,支持用户自建web云
经过一段时间的优化,PerfDog4.0全新来袭,先来看看都更新了神马 一,新版功能初探 【新增】新增图表常见操作提示功能 【新增】新增高阶功能,子进程帧率精准测试 【优化】彻底解决部分Android手机无法获取电量和内存等问题 【优化】解决iOS低版本无法获取FPS等问题 【修复】修复一些已知问题 ...
分类:Web程序   时间:2020-07-27 23:54:42    阅读次数:97
Embedded C Coding Rules
1. Using inline to replace #define when there are paramters 2. Using unsigned int only for bit-operations 3. Using fixed-width type int e.g. uint8_t, ...
分类:其他好文   时间:2020-07-27 15:42:42    阅读次数:67
购物车程序
# -*- coding: utf-8 -*- # @Time : 2020/7/26 14:13 # @Author : Breeze # @FileName: 购物车程序.py product_list = [ ("Mac",9000), ("kindle",800), ("tesla",900 ...
分类:其他好文   时间:2020-07-27 15:36:49    阅读次数:63
login_while
# -*- coding: utf-8 -*- # @Time : 2020/7/25 22:45 # @Author : Breeze # @FileName: login_while.py user_name = "Breeze" password = "123456789" counter = ...
分类:其他好文   时间:2020-07-27 15:35:26    阅读次数:67
九九乘法表
# -*- coding: utf-8 -*- # @Time : 2020/7/25 13:59 # @Author : Breeze num1 = 1 while num1 <= 9: num2 = 1 while num2 <= num1: print("{}*{}={}".format(nu ...
分类:其他好文   时间:2020-07-27 15:35:12    阅读次数:53
12955条   上一页 1 ... 34 35 36 37 38 ... 1296 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!