摘自:http://libusb.sourceforge.net/api-1.0/group__libusb__dev.html#gaf2718609d50c8ded2704e4051b3d2925 uint8_t libusb_get_bus_number ( libusb_device * de ...
分类:
其他好文 时间:
2020-02-21 20:10:59
阅读次数:
351
可以执行存储过程sp_helpdb查询到数据库相关信息: EXECUTE sp_helpdb 'Test' GO Source Code 或者查询view视图sys.databases: SELECT create_date FROM sys.databases WHERE name = 'Test ...
分类:
数据库 时间:
2020-02-21 18:12:35
阅读次数:
104
启动项目的时候报Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in ...
分类:
系统相关 时间:
2020-02-21 12:40:56
阅读次数:
148
出现问题的原因: jdbc配置不正确 解决方案: 1、检查是否已添加数据库驱动jar包 2、检查数据库服务是否启动 3、检查数据库配置文件 主要为:dialect,driver_class,url,username,password这五项。 务必注意检查大小写以及英文标点。 4、检查是否缺少字符集、 ...
分类:
数据库 时间:
2020-02-20 18:34:51
阅读次数:
107
1、下载安装包 根据https://github.com/tesseract ocr/tesseract/wiki,我找到非官方的安装包,好像我只看到64位的安装包http://digi.bib.uni mannheim.de/tesseract/tesseract ocr setup 4.00.0 ...
分类:
其他好文 时间:
2020-02-20 17:25:43
阅读次数:
111
1.更新树莓派系统 $ sudo apt-get update $ sudo apt-get upgrade -y 2.安装python依赖环境 $ sudo apt-get install build-essential libsqlite3-dev sqlite3 bzip2 libbz2-de ...
分类:
编程语言 时间:
2020-02-20 13:29:54
阅读次数:
327
今天发现自己的Android studio版本有些低,于是删除重新在官网下载了最新版本的,结果新建项目会报错,unable to find valid certification path to requested target,今天没有解决明天再说 ...
分类:
其他好文 时间:
2020-02-19 23:40:38
阅读次数:
63
如果最外层是一个{}的话,需要再增加一对圆括号, 不加圆括号会报:错误Uncaught SyntaxError: Unexpected token : 其它类似: 在函数中返回箭头函数对象时,也要加一个()比如 export default connect(()=>({"age":111}))(De ...
分类:
Web程序 时间:
2020-02-19 19:12:31
阅读次数:
97
链接:https://leetcode-cn.com/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof/ 思路: dfs 代码: class Solution { public: int get_single_sum(int x) { int s= 0; whi ...
分类:
其他好文 时间:
2020-02-19 16:51:16
阅读次数:
68
功能:Java以缓冲字符流向文件写入内容(如果文件存在则删除,否则先创建后写入) public void Save_local(XinJian xinJian,String files) throws Exception//xieru xinjian de xiangxi xingxi { File ...
分类:
编程语言 时间:
2020-02-18 15:07:09
阅读次数:
128