07 2022 档案
摘要:1.添加JDBC的驱动包 新建package命名为lib,将驱动包放入lib中,并build path。 驱动包下载地址: 链接:https://pan.baidu.com/s/1nSJLFx73-S4QsdH168GKbw 提取码:e0rh 2..创建jdbc.properties,将数据库配置写
阅读全文
摘要:问题描述 在使用JDBC连接sql server时出现了这个错误 这个问题其实最主要还得看后面那一句话【The server selected protocol version TLS10 is not accepted by client preferences [TLS12]】,意思是数据库服务
阅读全文
摘要:File -> Project Structure -> Modules -> 选中要添加build path的项目 -> Dependencies -> 点击小加号 -> 选择JARs or directories ->选择要添加的外部jar包。
阅读全文
摘要:环境配置 1.在pycharm中下载Selenium 2.谷歌浏览器驱动程序下载地址: http://chromedriver.storage.googleapis.com/index.html 简单小例子 import time from selenium import webdriver # 设
阅读全文