0

私が書いたこのプログラムがあり、問題があります。「重複キー」なしで「挿入」のみを使用してこのプロジェクトを開始し、正常に機能しました。追加してから、コードはループに入り、何も実行しません。このコードをファイルから読み取り、データベースに挿入します。更新を試みましたが、そのファイルに新しい項目があると機能しません。誰が私が間違っているのか教えてもらえますか。

ここに私のコードがあります

import java.sql.*;
import java.io.File;
import java.io.FileReader;
import java.io.BufferedReader;
import java.io.IOException;

 public class mysql {
static Connection conn;
public static void main (String argv[]) throws SQLException, ClassNotFoundException     {
File file = new File("/home/bandoc/data.txt");

if (!file.exists()) {
    System.out.println("Cannot Read File\n");
}
BufferedReader br = null;
//connect to mysql db
Class.forName ("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection ("jdbc:mysql://localhost/membership?  user=My-Username&password=my-Password");
Statement stmt = conn.createStatement();
ResultSet mysqldata = stmt.executeQuery ("select * from logIn");

try {
    br = new BufferedReader(new FileReader(file.getPath()));    
}catch(IOException e) {
    e.printStackTrace();
}

StringBuilder sb = new StringBuilder();
String line = "";
try {
    line = br.readLine();

}
catch(IOException e) {
    e.printStackTrace();
}

PreparedStatement stm =  conn.prepareStatement("insert into logIn (logId, logFname, logLname, logDept, logUser, logEmail, logDeptCode) values (?,?,?,?,?,?,?) ON DUPLICATE KEY UPDATE test =1");

while (line != null) {
    if (line.equalsIgnoreCase("ID:")) {
        try {
            line = br.readLine();

            stm.setInt(1,Integer.parseInt(line.toString()));
            line = br.readLine();
        }catch (IOException e) {
            e.printStackTrace();
        }
    }
    if (line.equalsIgnoreCase( "First:")) {
        try {
            line = br.readLine();

            stm.setString(2,line);
            line = br.readLine();
         }catch (IOException e) {
                            e.printStackTrace();
                     }

    }
    if (line.equalsIgnoreCase("Last:")) {
        try {
            line = br.readLine();

            stm.setString(3,line);
            line = br.readLine();
         }catch (IOException e) {
                            e.printStackTrace();
                     }

    }
    if (line.equalsIgnoreCase("Dept:")) {
        try {
                        line = br.readLine();

                        stm.setString(4,line);
                        line = br.readLine();
         }catch (IOException e) {
                            e.printStackTrace();
                     }


    if (line.equalsIgnoreCase( "User:")) {
                    try {
                            line = br.readLine();

                            stm.setString(5,line);
                            line = br.readLine();
                     }catch (IOException e) {
                            e.printStackTrace();
                     }
        }

    if (line.equalsIgnoreCase( "Email:")) {
                    try {
                            line = br.readLine();

                            stm.setString(6,line);
                            line = br.readLine();
                     }catch (IOException e) {
                            e.printStackTrace();
                     }
        }


    if (line.equalsIgnoreCase( "Deptcode:")) {
                    try {
                            line = br.readLine();

                            stm.setString(7,line);
                            //line = br.readLine();
                     }catch (IOException e) {
                            e.printStackTrace();
                     }

        }   


    }
    stm.execute();
}
 try {
            br.close();
    }catch(IOException e) {
            e.printStackTrace();
    }



    System.out.println("done");

}
  }
4

2 に答える 2

0

「行」が「ID:」などの条件の 1 つと等しくない場合、次の readline は実行されず、「行」は同じままであるため、終わりのないループが発生します。

于 2013-05-24T00:29:58.367 に答える