+ 4
Where can I get software for coding Java on my computer?
I learned Java from this app.
3 Answers
+ 9
I wouldn't mind replacing those two with the IDEA ;)
https://www.sololearn.com/discuss/703965/?ref=app
https://www.sololearn.com/discuss/870283/?ref=app
+ 6
you just need an editor like (notepad, editplus) and jdk
install jdk latest version on your lappy set the path of the jdk in environment variables write your code on notepad or any editor and goto command prompt and use javac command for compilation and java command for executing the program
once you know the basics of java then you can use eclipse or netbeans but don't use these IDE in beginning
eg:-
if your java file is saved in javaprogram folder of local disk D then first open the cmd and type
>D: press enter
>cd javaprogram(folder name) press enter
>javac firstprogram.java (file name with extension) press enter
>java firstprogram (file/class name without extension ) press enter
đ¶ sorry for bad English đ