• 大小: 3KB
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2021-01-07
  • 语言: Java
  • 标签: java  txt  数据库  

资源简介

java 读取txt文本文件中的数据并保存到数据库中源代码,假设txt已有格式,并以","分隔。其中的sql包需要自己去微软官网下载。

资源截图

代码片段和文件信息

/*
 * To change this template choose Tools | Templates
 * and open the template in the editor.
 */

package homework4database;
import java.io.*;
import java.sql.*;

/**
 *
 * @author Administrator
 */
public class Main {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        TxtUpdate.Update(“students.txt“);
    }
}
class TxtUpdate{
    public static void Update(String fileName){
        try {
            //创建连接
            String connectionUrl = “jdbc:sqlserver://WWW-40CF488624B\\LPF:1433;“ + “databaseName=Students;username=sa;password=123“;//连接字符串
            Class.forName(“com.microsoft.sqlserver.jdbc.SQLServerDriver“);//驱动程序包
            Connection con = DriverManager.getConnection(connectionUrl);

评论

共有 条评论