如何在JAVA程序显示时每行添加行号

如何在JAVA程序显示时每行添加行号,第1张

大概就是这样啦,换成你自己的文件名就行了

import java.io.FileNotFoundException

import java.io.IOException

import java.io.RandomAccessFile

import java.util.ArrayList

public class ShowSourceCode {

public static void main(String[] args) throws FileNotFoundException, IOException{

RandomAccessFile file = new RandomAccessFile("Add.java", "r")

String tmp

while((tmp = file.readLine()) != null){

System.out.println(tmp)

}

file.seek(0)

int lineNum = 1

while((tmp = file.readLine()) != null){

System.out.println(lineNum + ": " + tmp)

lineNum++

}

}

}

文件名换成你自己即可

import java.io.FileNotFoundException

import java.io.IOException

import java.io.RandomAccessFile

import java.util.ArrayList

public class ShowSourceCode {

public static void main(String[] args) throws FileNotFoundException, IOException{

RandomAccessFile file = new RandomAccessFile("Add.java", "r")

String tmp

while((tmp = file.readLine()) != null){

System.out.println(tmp)

}

file.seek(0)

int lineNum = 1

while((tmp = file.readLine()) != null){

System.out.println(lineNum + ": " + tmp)

lineNum++

}

}

}


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

原文地址: http://outofmemory.cn/yw/12192343.html

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

发表评论

登录后才能评论

评论列表(0条)

保存