0
What can one use yo run java?
2 odpowiedzi
0
To run Java programs, you need Java Runtime Environment (JRE). If you also want to create Java programs, then you need the Java Development Kit (JDK). The JRE comes with the JDK, so you dont need to download both.
The JRE amd JDK are available for download for free from Oracle’s website: https://www.oracle.com/technetwork/java/javase/downloads/index.html
For development, I’d also recommend using an IDE (integrated development environment) - it makes coding WAY easier.
Personally, I use Netbeans, which you can download bundled with the JDK: http://www.oracle.com/technetwork/java/javase/downloads/jdk-netbeans-jsp-142931.html
Eclipse is another popular IDE; I haven’t used it myself, but I may as well throw in a download link for you since it’s arguably the most popular IDE out there for Java developers: https://www.eclipse.org/downloads/packages/release/oxygen/3a/eclipse-ide-java-developers
0
thanks foxx..