java Methode Java pour读取CSV。 Contient unepartieliéàd'autreclasse。 (SQL_GESTION,BADGE)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java Methode Java pour读取CSV。 Contient unepartieliéàd'autreclasse。 (SQL_GESTION,BADGE)相关的知识,希望对你有一定的参考价值。
private void ReadCSV(String csvNameFile) {
sql_gestion = new SQL_GESTION(mContext); // gestionnaire de la table "BADGE"
BufferedReader br = null;
String line = "";
String cvsSplitBy = "\t";
try {
br = new BufferedReader(new FileReader(csvNameFile));
while ((line = br.readLine()) != null) {
// use comma as separator
String[] Val = line.split(cvsSplitBy);
if(Val.length >= 15){
sql_gestion.open(); // ouverture de la table en lecture/écriture
BADGE badge = new BADGE("","");
badge.setNum_BADGE(Val[15].replace("\"",""));
badge.setId_USAGER(Val[6].replace("\"",""));
long idbadge = sql_gestion.addBadgeUsager(badge);
if(idbadge == -1)
System.out.println(idbadge);
sql_gestion.close();
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
System.out.println("Done");
}
以上是关于java Methode Java pour读取CSV。 Contient unepartieliéàd'autreclasse。 (SQL_GESTION,BADGE)的主要内容,如果未能解决你的问题,请参考以下文章
apache_conf htaccess - gzip Methode和浏览器缓存
Arduino在子类上使用父类Methode
Java 的 inputStream 读取文本内容
JAVA如何调用C语言编写的程序,并且传参数,读取返回结果?
执行几种方法[关闭]
java从后向前读取文件