Tracking file in Netbeans IDE Projects window

前端 未结 1 583
逝去的感伤
逝去的感伤 2021-01-26 21:35

Just getting hands on with NetBeans 8.0.2. Wondering if the IDE has similar features as Eclipse or Visual Studio like

  1. Track current file in Projects explorer -

相关标签:
1条回答
  • 2021-01-26 22:18

    For the first part:

    use the option "View -> Synchronized Editor with views" to automatically select the current file in the editor in the project window.

    Alternatively (what I prefer) use "Navigate -> Select in Projects" to manually select the current editor file in the project window .

    You can find more information about navigating in the IDE in the manual:
    http://docs.oracle.com/cd/E50453_01/doc.80/e50452/work_java_code.htm#CIAGADFI

    Regarding the second part: Java is case sensitive. MyClass is something different than MyCLASS so it has to treat the file names as case sensitive.

    0 讨论(0)
提交回复
热议问题