在eclipse的編輯區(qū)的左側邊框上點擊鼠標右鍵,在彈出的選項里有一行“Show Line Number”,選擇這個就行了。
創(chuàng)新互聯(lián)擁有網(wǎng)站維護技術和項目管理團隊,建立的售前、實施和售后服務體系,為客戶提供定制化的成都網(wǎng)站建設、做網(wǎng)站、網(wǎng)站維護、雅安服務器托管解決方案。為客戶網(wǎng)站安全和日常運維提供整體管家式外包優(yōu)質服務。我們的網(wǎng)站維護服務覆蓋集團企業(yè)、上市公司、外企網(wǎng)站、電子商務商城網(wǎng)站建設、政府網(wǎng)站等各類型客戶群體,為全球數(shù)千家企業(yè)提供全方位網(wǎng)站維護、服務器維護解決方案。
如果是中文版更明顯,就叫“顯示行號”
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是否提供某種方法:可以讓用戶代碼在編譯時確定源碼行號等信息,本人暫時不知曉。不過從網(wǎng)上搜索得到的方法大致是:
Thread.currentThread().getStackTrace()[1].getFileName():獲取當前文件名;
Thread.currentThread().getStackTrace()[1].getLineNumber():獲取當前行號。
其中:Thread.currentThread().getStackTrace()返回的是一個數(shù)組形式的函數(shù)調用棧(棧頂在索引0處),其中第1個元素(索引為0)為最新調用的函數(shù)信息(getStackTrace()),第2個元素(索引為1)為當前函數(shù)(即調用getStackTrace()的函數(shù))信息。
文件名換成你自己即可
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 就能顯示行數(shù)了。 下圖有說明
eclipse中查找和替換直接按快捷鍵 ctrl + F ?會有彈出框,下圖所示:
find欄輸入要找的東西,點擊下面的find按鈕就是查找。
replace with 欄輸入的字符然后點擊replace 或者replace all就是把找出的字符替換成你在這輸入的字符,