Tuesday, August 18, 2015

Eclipse

Ctrl + Shift + P     - find matching brace / bracket
double click on 1st char after opening " - select entire string
double click on 1st char after opening { - select enter code block
double click on 1st char after opening ( - select enter argument
Ctrl + Shift + F - Format selected block of code
main   Ctrl+Space - public static void main(String args[]){}
sysout Ctrl+Space - System.out.println();

http://stackoverflow.com/questions/10637702/eclipse-quick-search-on-filename Quickly for a file / resource in the project Open Resource Shift+Ctrl+R for all resource files (including java files) Open Type Shift+Ctrl+T for all java classes in classpath They also filter the list as you type. Note that they search all files of all opened projects in current workspace.

Eclipse auto-complete (Ctrl + Space) and hyperlink navigation NOT working for a Maven Import Project In Project Explorer Right Click on the ProjectFolder From the contect menu Click on Maven --> Update Project... (Alt + F5)

Swith to Editor

Ctrl + Shift + e

Opening eclipse getting error could not load jvm.dll This happens when JDK's 32 or 64 bit is NOT same as that of Eclipse. Try opening eclipse with both 32bit version and 64bit version. One of it should fix this problem


No comments:

Post a Comment