--Eclipse is a integrated development environment (IDE) used in computer programming.
--Eclipse is open source software and is released under the terms of the Eclipse Public License.
--Eclipse is mainly used for Java application development.
4. Japanese localization of Eclipse first.
Download 64 bit button.

Download button.






check box and click the ʻAccept selected` button.

LAUNCH button.

Browse button, select the save location and click the Launch button.

Browse button, select the save location and click the Launch button.

--Eclipse has a plugin called " Pleiades ".
--In Pleiades, Eclipse itself is also included, so the above settings are unnecessary.


Download button in the Java column.


Unzip the downloaded zip file. (7-Zip promotion)

decompressed folder. (Pleiades-2020-03-java-win-64bit-jre_20200322 / pleiades / eclipse /)

in pleiades-2020-03-java-win-64bit-jre_20200322 / pleiades / eclipse / `.

Browse button, select a save location and click the Launch button.



[File (F)]-> [New (N)]-> [Package].

Hello in the name and click the Done button.

[New] → [Class].

Hello for the package and name, checkpublic static void main (String [] args), and click the Done button.

Hello.java
package Hello;
public class Hello {
public static void main(String[] args) {
//TODO auto-generated method stub
System.out.println("Hello World!!");
}
}
Run button.
7. Select Run → Java Application.
8. Success if Hello World !! is displayed on the console.
-[Latest] How to build Java environment on Ubuntu -[Even beginners can do it! ] How to create a Java environment on Windows 10 (JDK14.0.1)
Recommended Posts