5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Eclipseでの初めてのJava開発

Last updated at Posted at 2018-01-23

EclipseでJava開発をしました。HelloWorldを出力するだけの初心者向けサンプルプログラムのメモです。
SAP関連の開発をしようとして、インストール時にEclipseとJDK以外もありますが、以下の記事に記録しています。

手順

1. プロジェクト作成

Project Explorerで右クリックして New -> Project を選択。
10.CreateProject01.JPG

「Java Project」を選択。
10.CreateProject02.JPG

項目「Project name」を入力して終了。
10.CreateProject03.JPG

JavaのPerspective(Eclipseの画面表示設定)に変更しておきます。
10.CreateProject04.JPG

2. パッケージとJavaプログラム作成

"src"フォルダで右クリックして New -> Class を選択。
20.CreatePackage01.JPG

パッケージ名とクラス名を入力して終了。
20.CreatePackage02.JPG

以下のソースコードで保存。

HelloWorld.java
package test00;

public class HelloWorld {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		System.out.println("Hello, world");

	}

}

実行

メニューの Run -> Run で実行するとコンソールにHello Worldが表示されます。
30.RunResult01.JPG

5
3
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?