圖示欣賞:

官網下載下傳即可,eclipse-java-kepler-sr1-win32-x86_64 隻有150m。
中文注釋字型過小,設定辦法,window|preferences|general|appearance|colors and fonts|basic”的text font。設為14就好。
調試時,棧裡面的變量會自動出現在監視視窗中。對于基本資料類型,"value"就是值,對于複雜資料類型,"value"就是類型名,且下方的小視窗會顯示tostring()的結果。

條件命中斷點
window|show view|beaakpoints
當滿足自定義的條件時目前斷點才會命中。
drop to frame.
傳回這個堆棧(也就是目前函數)中的第一句重新執行,便于多次觀察。但涉及到的變量的值不能複原。(是以沒什麼用處啊)
run|external tools|external tools configurations 新增一個配置,見下圖:
window|preferences|java|editor|content assist
預設 auto activation下觸發辨別隻有".",現在可以改為".abcdef....z"
在 package explorer中右擊項目名稱,選擇"properties"。然後見下圖:
有時項目名會标有紅色的叉号,可以在problems視圖中檢視原因。步驟:window|show view|other|general,然後見下圖:
建議用utf-8。 window|preferences|general|workspace|text file encoding。
可以配合 -dfile.encoding=utf-8 這個java啟動參數使用。