在eclipse的编辑区的左侧边框上点击鼠标右键,在弹出的选项里有一行“Show Line Number”,选择这个就行了。
创新互联拥有网站维护技术和项目管理团队,建立的售前、实施和售后服务体系,为客户提供定制化的成都网站建设、做网站、网站维护、雅安服务器托管解决方案。为客户网站安全和日常运维提供整体管家式外包优质服务。我们的网站维护服务覆盖集团企业、上市公司、外企网站、电子商务商城网站建设、政府网站等各类型客户群体,为全球数千家企业提供全方位网站维护、服务器维护解决方案。
如果是中文版更明显,就叫“显示行号”
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++;
}
}
}
Java是否提供某种方法:可以让用户代码在编译时确定源码行号等信息,本人暂时不知晓。不过从网上搜索得到的方法大致是:
Thread.currentThread().getStackTrace()[1].getFileName():获取当前文件名;
Thread.currentThread().getStackTrace()[1].getLineNumber():获取当前行号。
其中:Thread.currentThread().getStackTrace()返回的是一个数组形式的函数调用栈(栈顶在索引0处),其中第1个元素(索引为0)为最新调用的函数信息(getStackTrace()),第2个元素(索引为1)为当前函数(即调用getStackTrace()的函数)信息。
文件名换成你自己即可
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++;
}
}
}
读取每行,行头添加行号后显示
BufferedReader input = new BufferedReader(new FileReader(file));
StringBuffer strbuf = new StringBuffer();
String line = input.readLine();
int num = 1;
while (line != null) {
strbuf.append(num);
strbuf.append(line);
strbuf.append('\n');
line = input.readLine();
num++;
}
txaWord.setText(strbuf.toString());
打开eclipse , 随便打开一个其中的代码 , 然后在窗口的左侧右键鼠标
选中show line numbers 就能显示行数了。 下图有说明
eclipse中查找和替换直接按快捷键 ctrl + F 会有弹出框,下图所示:
find栏输入要找的东西,点击下面的find按钮就是查找。
replace with 栏输入的字符然后点击replace 或者replace all就是把找出的字符替换成你在这输入的字符,