如果想要通过java代码的方式来计算.java文件的行数,可以通过IO来读取,
BufferedReader的方法readLine()来按行读取,每读取一行,行数+1
方法二:
如果要查看.java文件的代码行数,
可以使用现成的IDE工具,比如ECLIPSE...
每一行的行号都有表示出来
import java.io.File
import java.io.RandomAccessFile
/**
* 读取文档的第二行内容
*
* @author 3306 2017年3月21日
* @see
* @since 1.0
*/
public class CountLine {
/*
* 读取文件绝对路径
*/
private static String filePath = "d:/cms.sql"
public static void main(String[] args) {
long line = readLine(filePath)
System.out.println(line)
}
/**
* 读取文件行数
*
* @param path
* 文件路径
* @return long
*/
public static long readLine(String path) {
long index = 0
try {
RandomAccessFile file = new RandomAccessFile(new File(path), "r")
while (null != file.readLine()) {
index++
}
file.close()
} catch (Exception e) {
e.printStackTrace()
}
return index
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)