這篇文章將為大家詳細講解有關(guān)代碼行號如何利用Java獲取,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
成都創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的福海網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
具體實現(xiàn)代碼:
/** * */ package leo.demo.training; /** * Get current java file name and current code line number * @author Leo Xie */ public class CurrentLine { /** * @param args */ public static void main(String[] args) { StackTraceElement ste1 = null; // get current thread and its related stack trace StackTraceElement[] steArray = Thread.currentThread().getStackTrace(); int steArrayLength = steArray.length; String s = null; // output all related info of the existing stack traces if(steArrayLength==0) { System.err.println("No Stack Trace."); } else { for (int i=0; i<steArrayLength; i++) { System.out.println("Stack Trace-" + i); ste1 = steArray[i]; s = ste1.getFileName() + ": Line " + ste1.getLineNumber(); System.out.println(s); } } // the following code segment will output the line number of the "new " clause // that's to say the line number of "StackTraceElement ste2 = new Throwable().getStackTrace()[0];" StackTraceElement ste2 = new Throwable().getStackTrace()[0]; System.out.println(ste2.getFileName() + ": Line " + ste2.getLineNumber()); // the following clause will output the line number in the external method "getLineInfo()" System.out.println(getLineInfo()); // the following clause will output its current line number System.out.println(getLineInfo(new Throwable().getStackTrace()[0])); } /** * return current java file name and code line number * @return String */ public static String getLineInfo() { StackTraceElement ste3 = new Throwable().getStackTrace()[0]; return (ste3.getFileName() + ": Line " + ste3.getLineNumber()); } /** * return current java file name and code line name * @return String */ public static String getLineInfo(StackTraceElement ste4) { return (ste4.getFileName() + ": Line " + (ste4.getLineNumber())); } }
關(guān)于代碼行號如何利用Java獲取就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
當前題目:代碼行號如何利用Java獲取
當前網(wǎng)址:http://jinyejixie.com/article24/pgeoje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站、品牌網(wǎng)站建設(shè)、移動網(wǎng)站建設(shè)、搜索引擎優(yōu)化、微信小程序、虛擬主機
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)