0

csv ファイルの内容を mysql に転送したいのですが、私の csv ファイルには、コンマを含むテキストを含む列があります。

以下のコードを使用してコンテンツを転送しています

`

import java.io.FileNotFoundException;
import java.io.FileReader;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.util.Date;

import org.apache.commons.lang.StringUtils;

import au.com.bytecode.opencsv.CSVReader;




public class CSVLoader {


    static int  count;
    private static final 
        String SQL_INSERT = "INSERT INTO ${table}(${keys}) VALUES(${values})";
    private static final String TABLE_REGEX = "\\$\\{table\\}";
    private static final String KEYS_REGEX = "\\$\\{keys\\}";
    private static final String VALUES_REGEX = "\\$\\{values\\}";

    private Connection connection;
    private char seprator;

    /**
     * Public constructor to build CSVLoader object with
     * Connection details. The connection is closed on success
     * or failure.
     * @param connection
     */
    public CSVLoader(Connection connection) {
        this.connection = connection;
        //Set default separator
        this.seprator = ',';
    }

    /**
     * Parse CSV file using OpenCSV library and load in 
     * given database table. 
     * @param csvFile Input CSV file
     * @param tableName Database table name to import data
     * @param truncateBeforeLoad Truncate the table before inserting 
     *          new records.
     * @throws Exception
     */
    public void loadCSV(String csvFile, String tableName,
            boolean truncateBeforeLoad) throws Exception {

        CSVReader csvReader = null;
        if(null == this.connection) {
            throw new Exception("Not a valid connection.");
        }
        try {

            csvReader = new CSVReader(new FileReader(csvFile), this.seprator);

        } catch (Exception e) {
            e.printStackTrace();
            throw new Exception("Error occured while executing file. "
                    + e.getMessage());
        }

        //String[] headerRow = csvReader.readNext();
        String[] headerRow = csvReader.readNext();
        count++;
        if (null == headerRow) {
            throw new FileNotFoundException(
                    "No columns defined in given CSV file." +
                    "Please check the CSV file format.");
        }

        String questionmarks = StringUtils.repeat("?,", headerRow.length);
        System.out.println(headerRow.length);
        questionmarks = (String) questionmarks.subSequence(0, questionmarks
                .length() - 1);

        String query = SQL_INSERT.replaceFirst(TABLE_REGEX, tableName);
        query = query
                .replaceFirst(KEYS_REGEX, StringUtils.join(headerRow, ","));
        query = query.replaceFirst(VALUES_REGEX, questionmarks);

        System.out.println("Query: " + query);

        String[] nextLine;
        Connection con = null;
        PreparedStatement ps = null;
        try {
            con = this.connection;
            con.setAutoCommit(false);
            ps = con.prepareStatement(query);

            if(truncateBeforeLoad) {
                //delete data from table before loading csv
                con.createStatement().execute("DELETE FROM " + tableName);
            }

            final int batchSize = 1000;
            int count = 0;
            Date date = null;
            while ((nextLine = csvReader.readNext()) != null) {

                if (null != nextLine) {
                    int index = 1;
                    for (String string : nextLine) {
                        date = DateUtil.convertToDate(string);
                        if (null != date) {
                            ps.setDate(index++, new java.sql.Date(date
                                    .getTime()));
                        } else {
                            ps.setString(index++, string);
                        }
                    }
                    System.out.println(count);
                    ps.addBatch();
                    System.out.println(count);
                }
                if (++count % batchSize == 0) {
                    System.out.println(count);
                    ps.executeBatch();
                }
            }
            ps.executeBatch(); // insert remaining records
            con.commit();
        } catch (Exception e) {
            con.rollback();
            e.printStackTrace();
            throw new Exception(
                    "Error occured while loading data from file to database."
                            + e.getMessage());
        } finally {
            if (null != ps)
                ps.close();
            if (null != con)
                con.close();

            csvReader.close();
        }
    }

    public char getSeprator() {
        return seprator;
    }

    public void setSeprator(char seprator) {
        this.seprator = seprator;
    }

}

` 実行すると、「パラメーター 23 に値が指定されていません」というエラーが表示されます。私のデータベーステーブルには22列があり、csvファイルにも22列があります.したがって、最初の行自体にコンマが含まれるテキストがあり、それを解析できないため、23と想定しています22列ではなく、問題を明確にして解決策を提供してくれる人はいますか。

4

2 に答える 2

0

当面の問題は、列名を SQL ステートメントに挿入するときに列名をエスケープしないことだと思います。作成しているのは、次の形式のステートメントです。

INSERT INTO sometable(key1,key2,key3) VALUES(?,?,?)

ヘッダー行にコンマがある場合 (1 つのキーが代わりに「ke,y3」であるとしましょう)、CSV ライブラリによって正しく読み取られたとしても、次のようなものを作成します。

INSERT INTO sometable(key1,key2,ke,y3) VALUES(?,?,?)

これで、値の数と列の数が一致しなくなりました。これは、他の文字でも発生する可能性があることに注意してください。1 つのキーに疑問符があり、パラメーターのプレースホルダーとして解釈される可能性があります。

解決策: 頭痛の種を避けるために、これらの文字をキーに含めないでください。mysql がそれらを適切に処理する方法と場合はわかりませんが、処理する場合は、挿入する前に少なくとも列名をエスケープする必要があります。(SQL インジェクションを防ぐために) 適切かつ安全に行う方法はわかりませんが、これは明らかに 1 回限りのツールであるため、次のように列名をバッククォートでラップするだけで十分です。

INSERT INTO sometable(`key1`,`key2`,`ke,y3`) VALUES(?,?,?)
于 2013-11-04T23:18:39.470 に答える
-1

CSV ファイルには 2 種類のコンマがあります。1 種類のカンマはフィールドを区切り、もう 1 種類のカンマはテキストの一部であり、常に引用符の間に挿入されます。引用符内のコンマとは異なる方法で、引用符の外側のコンマを解析する必要があります。あなたのコードはこれを行うようには見えません。おそらく次のようなものです:

repeat
  c <-read next character
  if (c == '"')
    parse quoted field  // May include commas.
  else
    parse non-quoted field // Will not include commas.
  endif
until file all read.

引用符で囲まれたフィールドと引用符で囲まれていないフィールドを異なる方法で解析すると、2 種類のコンマを正しく簡単に処理できます。

于 2013-11-04T23:04:11.063 に答える