我必须在文本文件中写入一些值,例如一些数字,从文本文件中读取这些值,然后建立数据库连接,以在Java中显示从文件中读取的那些值。我该怎么办?
答案 0 :(得分:0)
要连接到sql数据库,必须将jdbc驱动程序添加到构建路径,并且可以使用此代码连接到拥有的数据库(此示例适用于mysql数据库,如果使用其他类型,则将必须更改代码中的该部分):
String address; //address or URL of your database
String IP; //IP of your database
String username; //username of your database
String password //password of you database
String tablename //name of the table in your database
Connection con =
DriverManager.getConnection("jdbc:mysql://"+address+":"+IP+"/"+tablename,
username, password);
Statement sta = con.createStatement();
使用
sta.executeUpdate(statement);
您可以将数据插入数据库中(为此您必须具有一些基本的音节知识)。
如果要显示数据库中的数据,则必须在平台上进行查询;如果要在Java中显示它,则必须打印数据或创建GUI来显示它。