
Java
听船歌声声慢
这个作者很懒,什么都没留下…
展开
-
如何查看自己JDK以及JRE路径
Windows+R进入命令行,输入:java -verbose原创 2019-04-26 19:45:49 · 33817 阅读 · 6 评论 -
JRE System Library [JavaSE-1.8](unbound)
1.选择项目右击,选择Build Path–>Configure Build Path。2.点击JRE System Library JavaSE-1.8–>Edit3.选择自己安装的JRE版本–>Finish原创 2019-04-26 20:03:33 · 2588 阅读 · 0 评论 -
Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdb
Eclipse连接数据库错误:Loading class com.mysql.jdbc.Driver'. This is deprecated. The new driver class iscom.mysql.cj.jdbc.Driver’. The driver is automatically registered via the SPI and manual loading of the...原创 2019-04-27 12:54:14 · 203 阅读 · 0 评论 -
java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more tha
解决方法:URL写为:(其中test为连接的数据库名称) String url = "jdbc:mysql://localhost:3306/test?useUnicode= true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai\r\n"...原创 2019-04-27 12:59:45 · 503 阅读 · 0 评论 -
java.sql.SQLException: No suitable driver found for jdbc
解决方法:在jre\lib\ext里添加驱动jar包1.找到自己驱动jar包所在的位置复制mysql-connector-java-8.0.16文件2.粘贴到jre/lib/ext 下。原创 2019-04-27 13:16:40 · 5634 阅读 · 1 评论 -
运行时出现Command format: Demo [-unicode] [-csv] [-hide] excelfile
java 对excel表进行操作时出现Command format: Demo [-unicode] [-csv] [-hide] excelfile Demo -xml [-format] excelfile Demo -readwrite|-rw excelfile output ...原创 2019-05-01 10:16:34 · 799 阅读 · 1 评论 -
Java从excel表获取数据传入数据库
一.连接数据库package com.javen.db;import java.beans.Statement;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQL...原创 2019-05-28 08:07:58 · 378 阅读 · 0 评论 -
Eclipse连接数据库
import java.sql.Connection;import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement; public class Main { static String updata="15"; s...原创 2019-05-28 08:19:41 · 229 阅读 · 0 评论 -
Java从天气网爬取历史天气数据
一.代码import java.beans.Statement;import java.io.IOException;import java.sql.Connection;import java.sql.DriverManager;import java.text.SimpleDateFormat;import java.util.Properties;import org.jso...原创 2019-05-28 08:20:12 · 1844 阅读 · 1 评论