Saturday, 29 March 2014

You can launch your Java project by just double clicking the jar file of the project. For that you have create the jar file first. Don't worry you don't have to download additional tools for that purpose it can be done using Eclipse. If you don't have Eclipse you can download it for your platform HERE If you don't have JDK you can download it free for you OS HERE Here is the step by step method to create Executable Jars using Eclipse...

Monday, 24 March 2014

Java is extremely powerful and Easy Language. But don’t misunderstand its easy but powerful and popular language. It is a must learn programming language for you weather you want to develop web Applications or desktop Applications. It is also good for you if you are willing to develop for mobile phone. Java is Ideal choice for everyone. Lest's check  the reasons behind Java's success and why it is the first choice for every programmer in...

Saturday, 22 March 2014

The biggest problem a beginner faces is the problem of Logic Developing. Many of Beginners do not have too much creative thinking. Today i m going to share with you the techniques which i used to strengthen my logic in programming and  they helped me a Ton. Believe me you are going to love them. Know what you are doing 1 : Most of the beginners just want to make their code run rather then thinking of logic behind it. Trust me you are not going to learn anything if you continue doing this.The better way is to break your problems...

Thursday, 20 March 2014

 Have you ever thought about what if you could know the time taken by your code to run. That's what todays post is all about. Knowing the speed of your program or algorithm is very important. Because that's the only way to make it better and faster. Today i am going to show you how you can calculate the running time of your program.      For doing this you first need to include the header file "time.h". Then declare two variables...

Wednesday, 19 March 2014

To understand this first you need to know why do we create static methods and how do we call them learn about static methods at : Main method is declared static because static methods do not need any instance to get themselves called. Java is Object Oriented language so it is necessary to declare the  main method as static because their are some conditions in which we don’t want to create the object for example if we want to do simple programming...

Tuesday, 18 March 2014

Today i m going tell you how you can calculate your typing speed using Java code Here is the Code : import java.util.Scanner; public class TypingSpeedCalculator { int no_of_words=0; static int z; double minutes; double start,end; public int count_Words(){ int a=1; String b; Scanner s1 = new Scanner(System.in); System.out.println("Type some text : "); start = System.currentTimeMillis();...
Subscribe to RSS Feed Follow me on Twitter!