try {
String s = new String()
input = new BufferedReader(new FileReader("f:\\123.txt"))
while ((s = input.readLine()) != null) { // 判断是否读到了最后一行
String info[] = s.split(" ")
System.out.println( info[0] + " " + info[1] + " " + info[2] )
}
input.close()
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace()
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace()
}
把info[0] + " " + info[1] + " " + info[2] 这三个值放在insert语句里就行了 经过测试
1、java i/o读取txt文本2、使用实体类封装或使用list、map等封装读取到的数据
3、jdbc
txt文本要保证符合一定的格式,如每个字段间已特定字符分割。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)