The Best Way to Learn Java [UPDATED 2021]
https://www.fromdev.com/2012/11/Best-Way-To-Learn-Java.html

You all must be aware of the fact that the first step towards learning something new involves finding out the best possible way in which to begin. This can be quite a difficult and time-consuming task and often becomes the deciding factor with regards to whether or not you continue with your pursuit.
You may have found hundreds of free java learning resources around the web and have observed many different opinions about dozens of frameworks and Java development services
Finally, if you have decided to learn the Java programming language, at first, you might not be clear on where to start. This is where this article will come to your rescue. It will take you through various, time tested approaches, through which, you can learn Java in the most effective manner.
All in all, there is a great solution to get Java homework help from expert programmers at AssignmentCore. Finally, if you have decided to learn the Java programming language, at first, you might not be clear on where to start. This is where this article will come to your rescue. It will take you through various, time tested approaches, through which, you can learn Java in the most effective manner.
How Hard Is It To Learn Java
Java is an application layer programming language and is not very difficult to learn. It does not require any prior programming experience to learn java coding. Learning Java can be really easy if you already know a programming language. The fastest way to learn java is to start learning by doing it.Step 1: Make Up Your Mind – Ignore the Critics
Not every person loves Java programming and hence, they will try their level best to deter you from learning the language. It is true that the world of programming is flooded with different competing languages and it is not really possible to pick the one which is the best. A language that works perfectly for you might not serve the same purpose for someone else.Hence, instead of paying attention to what the critics of Java have to say, you must focus all your attention on learning the language you picked.
Step 2: Install Java and Eclipse IDE
Although, it is very much possible to learn Java simply by installing the Java SDK the learning curve, in this case, is bound to be really slow. When Java SDK is combined with an IDE, it provides for an integrated development environment which will take care of all your needs and will help you learn quickly and more effectively. And among the different IDEs, Eclipse is undoubtedly the best and can be downloaded for free.Steps to install Java SDK
- Go to Java Download Page
- Click on Download "JDK".
Steps to install Eclipse
- Go to Eclipse Download Page- Download "Eclipse IDE for Java EE Developers"
- Unzip the downloaded zip file in a folder. This should create a folder structure.
Step 3: Learn Java Fundamentals
The most logical way in which you can start learning Java is to start with the fundamental concepts. In order to learn the basics of this programming language, you can make use of a free tutorial or can simply download a good e-book. The whole idea is to understand what core Java is all about before moving on to the advanced levels.
Some of the key concepts you must learn are
- Object-Oriented Programming Concepts including encapsulation, abstraction, inheritance, containment, and polymorphism.
- Why Java is Platform Independent? Why it can be easily run on all operating systems like Unix, Windows or Mac?
- What is Java Virtual Machine? How Java Virtual Machine works?
- Understanding of Java Collection framework
- Good understanding of data types and few java.lang classes like String, Math, System, java.io stream concepts, etc.
- Try coding competition to evaluate your programming skills.
Step 4: Read Some Good Books from Experts
Although, the online e-books, as well as tutorials, will help you learn Java in a very effective manner, looking at the language from the point of view of an expert will help you a great deal. For this, start reading books that have been penned down by expert Java programmers and professionals. This will help you gain an insight into the process of coding, as is done by experienced programmers. My choice of Free book is Thinking in Java You can also buy a printed copy of Thinking in Java on Amazon. In case you are looking for different good options, here are few awesome java books that I recommend.Step 5: Start Creating a Simple Application Using Your Knowledge
Learning only the theoretical concepts of Java will not help you become a programming expert. For this, you will be required to put the theory into practice as well. So, make use of the knowledge acquired by you and start creating a simple application. You can go for some simple coding exercises which will keep your motivation levels high. By simple, I do not mean a “Hello World”. I would recommend some exercises like belowTry some logic exercises like
- Compute factorial of a number.
- Create a Fibonacci series.
- Find all prime numbers between 1 to 1000
- The print number in the word (e.g. 123 = One Hundred Twenty Three)
Try file input/output exercises like
- Read a file and display its content on the console.
- List all files in a directory.
- Create a file with some content.
- Read input from the user on the console.
Try String manipulation exercises like
- find a string in the large text.
- replace a part of the string
- parse numbers from strings
Step 6: Go Next Level – Simple is not Enough
Once you are through with basic Java coding exercises and have gained a comfort level in the usage of this language, you can move on to the next level and start creating programs and applications which require more complex and advanced levels of programming. By doing this, you will get good exposure to the real-life complexity that a programmer faces. At this level, I would recommend some exercises like below- Build a number pyramid of any size based on input size.
- Try creating a small text-based 2 player game (like Tic Tac Toe)
- Add a twist to the Tic Tac Toe with a Computer player option, where the computer can make one move and the second player is human. You will easily be able to figure out the strategy to win this game by now :)
Step 7: Learn Servlets and JSP
A web application is basically a dynamic extension of the application server or web. The introduction of Java EE 6 has resulted in a lot of improvement over the previous versions, in terms of adding good standard APIs like servlets and JSP. Learning these additional APIs will help you venture into new things and integrate your Java programming with additional frameworks and tools. Once you understand servlets and JSPs thoroughly, I would recommend some exercises like below- Build an application to capture user details in a form, save the form detail in MySQL database using JDBC.
- Build a simple web-based Tic Tac Toe game that two players can play.
- Add authentication to the above game by allowing only users with username/password.