Tracking file in Netbeans IDE Projects window(Netbeans IDE 项目窗口中的跟踪文件)
问题描述
刚刚开始使用 NetBeans 8.0.2.想知道 IDE 是否具有与 Eclipse 或 Visual Studio 类似的功能
Just getting hands on with NetBeans 8.0.2. Wondering if the IDE has similar features as Eclipse or Visual Studio like
在项目资源管理器中跟踪当前文件 - 处理大型项目时,打开大量文件,如果我想在项目窗口中导航到当前文件,会变得很困难.
Track current file in Projects explorer - When working with large projects, with lots of files open, if I want to navigate to current file in projects window it is getting difficult.
最重要的是,项目浏览器以区分大小写的方式显示文件夹/文件,导致难以找到确切的文件/文件夹.
On top of it, the project explorer is showing the folders/files in a case sensitive manner resulting difficult to locate the exact file/folder.
是否有一两个设置来控制这种行为?
Is there a settings or two to control this behavior?
推荐答案
对于第一部分:
使用选项视图 -> 带视图的同步编辑器"在项目窗口的编辑器中自动选择当前文件.
use the option "View -> Synchronized Editor with views" to automatically select the current file in the editor in the project window.
或者(我更喜欢)使用Navigate -> Select in Projects"在项目窗口中手动选择当前编辑器文件.
Alternatively (what I prefer) use "Navigate -> Select in Projects" to manually select the current editor file in the project window .
您可以在手册中找到有关在 IDE 中导航的更多信息:
http://docs.oracle.com/cd/E50453_01/doc.80/e50452/work_java_code.htm#CIAGADFI
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
关于第二部分:Java 区分大小写.MyClass
与 MyCLASS
不同,因此它必须将文件名视为区分大小写.
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.
这篇关于Netbeans IDE 项目窗口中的跟踪文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Netbeans IDE 项目窗口中的跟踪文件
基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01