A lot of beginners java Novice Download Install JDK configuration environment variables and then start to download and install the Java integrated development environment IDE,
For example, Eclipse, MyEclipse, NetBeans, etc., many of the books on Ava Foundation are also described in the first chapter detailing the installation of Eclipse
Method and simple to use, but I think this is actually a misunderstanding, for what, admittedly, the Java Integrated development environment for the work
Programming efficiency, it has its own powerful features and can also be used by a variety of plug-ins to the program
The development of the staff has brought great convenience, but the development of Tianjin website is not suitable for beginners, on the one hand, for beginners, its many functions
is not available to us, on the other hand, it is clear that the error hints and code auto-completion function is not conducive to our Java programming level
Improve.
I think for beginners like me more suitable for the use of text editing software to learn Java, using Notepad to meet
Our requirements, but Notepad also has its own shortcomings, not highlighting the layout is more difficult, and every time you write a good program to CMD
---javac---java again to run, very inconvenient here I recommend a text editing software------EditPlus and introduce it
Less-known features (shortcut key quick compile run) EditPlus is a very familiar editing tool for many programmers, it takes up the system
Small resources, easy to operate and flexible, support for rich file types (also customizable file types) and other advantages are widely used. EditPlus
In addition to the ability to edit the program, there are flexible compilation features, the following is a brief introduction to the Java compilation Settings EditPlus.
The EditPlus version used here is v3.40
Before configuring EditPlus, install and debug the Java Runtime Environment, then go to editplus and read the text from the menu
”;“ Parameter Settings "Enter settings
Select "Tool Group 1" in the "User tool" and click on the "Group name" button on the right side of the panel to change the Text tool group 1 to "Java compiler".
Click on the "Add Tool" button and select "Application"
1. Add the Compile function
The contents of "menu text" are changed to "Javac";
"Command" Select the compiler in the bin directory after installing JDK Javac.exe, my JDK installation path is "C:\jdk7", that
This path is "C:\jdk7\bin\javac.exe";
"parameter" selects "File name", which is displayed as "$ (filename)";
"Initial directory" select "File directory", display as "$ (filedir)"; action select "Capture Output"
2. Add Execution function
The contents of "menu text" are changed to "Java";
"Command" Select the compiler in the bin directory after installing the JDK Java.exe, my path is "C:\jdk7\bin\javac.exe";
"parameter" selects "File name without extension", which is displayed as "$ (filenamenoext)";
"Initial directory" selects "File directory", display as "$ (filedir)"; action is not required.
This completes the basic setup of EditPlus, can write a Java program to debug, compiled through Ctrl+1, using
Ctrl+2 Run the program, the error prompt will be displayed in the Output window, double-click on a row of error messages, EditPlus will automatically navigate to the
What about the wrong line? A simple Java IDE interface appears.
Run the effect, no longer need to Cmd-javac-java command
Configuring the Java Simple development environment using EditPlus