René Kolařík
René Kolařík

Reputation: 1286

basic and minimal java development setup

I am using Ubuntu and I would like to know the basic tools to install so I can begin develop in java.

With 'minimal' I mean the most transparent way without fancy tools and stacks etc. Like for minimal C programming you just write code and run 'gcc file.c -o myapp'.

Thank you

Upvotes: 0

Views: 353

Answers (4)

Peter Lawrey
Peter Lawrey

Reputation: 533442

Install the JDK. An IDE is a minimal requirement for development in Java. Not all developers would agree, but IMHO its the most productive way to develop in Java. I suggest IntelliJ CE which is free.

Upvotes: 1

Ryan Gray
Ryan Gray

Reputation: 824

Eclipse IDE. It's probably the most comprehensive Java IDE. I understand that isn't what you're looking for but light, simple ones like JCreator are not free to use. I don't see the sense in developing without an IDE of any kind.

Upvotes: 1

Mikko Maunu
Mikko Maunu

Reputation: 42074

Just download JDK.

Minimal tools are javac for compiling and java for executing JVM. Both are in bin directory.

Upvotes: 4

Jigar Joshi
Jigar Joshi

Reputation: 240860

You need to install JDK to start with hello world

Upvotes: 2

Related Questions