Basic Concept to create a java Proejct

Hi !
        few Things remember before learn java project .
1: why java is used on everywhere :-
                #. it is secure means other person can not access your source code .
                #. most of the bank application is created on java only .
                #. As of now statistics 90% people are using android mobile  but some of them they known that application has to create using java ,xml,servlet etc .

              #. main thing there is no open source in java . and for learning a java practice and the way you are thinking is important .

               #.One of the most significant advantages of Java is its ability to move easily from one computer system to another. The ability to run the same program on many different systems is crucial to World Wide Web software, and Java succeeds at this by being platform-independent at both the source and binary levels.

            #. Java is  multithreaded


========== Work flow of java Simple program ==========

 Define Class >>> Define method with return type >>> Create  Object and initialize the Data type /value >>> Close all the resource
 1. Save your program as .java format
 2. Open command prompt
       type javac filename;  // for compile a program . if file name is Anand.java then you provide
       javac Anand.java ;
3. for run a program
        java filename   // for run
       java Anand;
4. if not run then set the JDK  path for developing and set the JVM path for Running



Hope this will help.Better see attached file for compile and run program


Thanks & Regards
Anand Dwivedi
Software Developer
Bangalore
      

    
         

Comments

Popular posts from this blog

Converting JSONArray into CSV file in java

Online Book Store Website Using Java

How to read CSV File in Java