Java What do I need to download/install for Java?

  • Thread starter Thread starter Math10
  • Start date Start date
  • Tags Tags
    Java
AI Thread Summary
For Java development on Windows 8, Notepad++ is insufficient for compiling and running Java code. The Processing IDE is recommended for interactive graphics and comes with Java embedded. For a more comprehensive development experience, downloading NetBeans or Eclipse is advised, as these IDEs include Java and offer features like code completion and API lookup, which are essential for professional programming. Alternatively, downloading the JDK from Oracle and using a text editor is an option, but a syntax-aware editor is beneficial for Java coding. Users should ensure they have the correct version of the software for their platform to avoid issues.
Math10
Messages
301
Reaction score
0
I'm using Windows 8 and I have Notepad++ for coding in Java but I need a development kit for Java that can compile and run Java. I went to the website java.sun.com to download J2SE but it doesn't work.
 
Technology news on Phys.org
The short answer is you could consider the Processing IDE. It allows you to code in Java within a context of doing interactive graphics. I think it comes with Java embedded.

https://processing.org

The long answer would be to download Netbeans or eclipse which come with Java embedded inside and allow you to do full application projects. These are the tools that professional programmers use for development. The IDE editor will do code completion, colorize, look up api and a lot of other features.

https://netbeans.org/downloads/

The economical answer is to download the JDK from Oracle and install it and use your platform editor. However it really helps to have a syntax colorizing editor familiar with Java structure and keywords.
 
What problem are you experiencing? Did you download the right version for your platform?
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top