For example, I know I have a java file named “HelloWorld.java”. I don’t like to browse the package hierarchy to find it finally. I’d like there is a way that let me input this filename and open it directly.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CTRL + SHIFT + Tfor classes (.java files represent classes), andCTRL + SHIFT + Rfor all files.A dialog will open where you can type the name of the class/file. Note that you can also use wildcards (
*, ?) and camel case starting letters. For example, if you typeHW,HelloWorldwill be located.