import com.jacob.activeX.ActiveXComponent;import com.jacob.com.Dispatch;import com.jacob.com.Variant; public class ExcelToPdf { public static void exc ...
分类:
编程语言 时间:
2020-03-16 17:43:40
阅读次数:
87
说明: excel连接数据库,然后python控制excel刷新。 代码展示 import os import time from win32com.client import Dispatch def refreash(path_file): os.system('taskkill /IM EXC ...
分类:
编程语言 时间:
2020-03-07 20:49:00
阅读次数:
207
Exception in thread "main" com.mysql.jdbc.exceptions.jdbc4. MySQLSyntaxErrorException: Unknown column 'A' in 'where clause'线程“main”com.mysql.jdbc. Exc ...
分类:
数据库 时间:
2020-02-28 14:02:25
阅读次数:
86
一、造成崩溃的原因 1、代码中存在bug 2、Watchdog 超时机制 3、用户强制退出 4、低内存终止 5、其他违法系统规则的操作,大部分是内存问题 二、崩溃的类型 1、EXC_BAD_ACCESS 2、SIGSEVG ...
分类:
移动开发 时间:
2020-02-26 21:16:18
阅读次数:
322
老生常谈的问题,N年前仔细做过总结,现在全忘光了; 重载函数: 一定要参数列表不同,名字相同,C++编译器可以根据参数的类型自动调用; void exc(char& a, char& b) { char temp = a; b = a; b = temp; } void exc(int& a, in ...
分类:
编程语言 时间:
2020-02-26 18:59:29
阅读次数:
71
背景 我们有时候需要断言一些方法会抛出异常,这些异常需要符合我们的预期。 代码 新建test_exception.py文件,内容如下 import unittest class DivZeroTestCase(unittest.TestCase): def test_should_raise_exc ...
分类:
其他好文 时间:
2020-02-10 13:51:59
阅读次数:
74
前言 为了更好的让openpyxl在工作中使用,将openpyxl的常用操作封装起来,这样不仅复用性高,而且阅读性好 直接上代码 1 #!/usr/bin/env python 2 # -*- coding: utf-8 -*- 3 4 """ 5 __title__ = openpyxl操作Exc ...
分类:
编程语言 时间:
2020-01-29 21:38:45
阅读次数:
95
介绍一下traceback 平时看到的程序的错误信息也就是traceback信息 举个简单例子: import traceback try: s = [1, 2, 3] print s[5] except Exception: traceback.print_exc() 报错信息: Tracebac ...
分类:
其他好文 时间:
2020-01-17 19:25:41
阅读次数:
93
最近整合SSM框架,使用Jackson组件时,出现了问题,具体描述如下: 查找了一下资料,发现出现Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: com/fasterxml/jackso ...
分类:
编程语言 时间:
2020-01-15 11:35:24
阅读次数:
93
class Foo: def __init__(self,name): self.name = name def __enter__(self): print('执行enter') return self def __exit__(self, exc_type, exc_val, exc_tb): ...
分类:
编程语言 时间:
2020-01-12 15:18:08
阅读次数:
91