java读取txt从第四行开始每行为一个对象存放进list

java读取txt从第四行开始每行为一个对象存放进list,第1张

public static void main(String[] args) {

// TODO Auto-generated method stub

File file = new File("槐灶茄C:/zc.txt")

BufferedReader reader = null

String tempString = null

int line =1

try {

System.out.println("以行为单位读取文件铅察辩早内容,一次读一整行:")

reader = new BufferedReader(new FileReader(file))

while ((tempString = reader.readLine()) != null) {

if(line >= 4){//自己写进OBJECT存入LIST

}

line ++

}

reader.close()

} catch (FileNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}finally{

if(reader != null){

try {

reader.close()

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace()

}

}

}

}

List<String> lst = new LinkedList<String>()

BufferedReader reader = new BufferedReader(new FileReader(new File("file path")))

try {

    String line = null

    while ((line = reader.readLine()) != null) {

 肆册    裂李宏   扰唤lst.add(line)

    }

} finally {

    reader.close()

}

for (String line: lst) {

    System.out.println(line)

}

大致就这样,异常什么的你自己处理吧

代码不好写 首先得雀桐有一顷山坦个数据结构 就是一条记录的classclass xx{string field=null//field的 set 和 get方法} 新建一个list 然后遍历一个表唯禅所有行初始化一个 xx类每行中的变量 付给xx的字段 list中加入一个xx 这样就形成一个list希望有点帮助


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12263810.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存