Jackcess Numberformatexception

前端 未结 2 416
旧时难觅i
旧时难觅i 2021-01-27 08:35

I\'m trying to create a program which takes input from a CSV-file and writes it to a Java-created Access database and table. The program uses a while-loop to go through the CSV-

2条回答
  •  温柔的废话
    2021-01-27 08:53

    In your code you have use Scanner.next() which returns String value. Most of the time your table column values not match with String that is why you getting Numberformatexception

提交回复
热议问题