本文介绍了如何从文本文件中读取特定行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞!Lets say I have a file like this:'Line 1'"Line 2""Line 3" 如何从文件中读出特定行? How would I read out a specific line from the file?推荐答案BufferedReader oBuffer = new BufferedReader(new FileReader(szPath))) {String szLine;int nCount = 0;while ((szLine = oBuffer.readLine()) != null) { nCount++; if(nCount > 3) break;} 这篇关于如何从文本文件中读取特定行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-24 04:29