Tuesday 27 September 2016

How to Compile And Run Programs In Core Java


Step-1: Right click on Desktop and select New option and then click on Shortcut.


Step-2: Write CMD in text box. Then click on Next.


Step-3: Write JAVA as name of shortcut file. Then, Click on Finish.

Step-4: Open Notepad or any text editor in your computer.

Step-5:Write following program in text editor-
                               
                                 class Hello
                          {  
                               public static void main(String args[])
                               {  
                                  System.out.println("Hello Java");  
                               }  
                           }
Description Of Program=>
Hello is class name. public static void main(String args[]) method is called main method. System.out.println("Hello Java"); statement is used to print any line.
Step-6:Make new directory to save java files of any name. For example, I create directory JAVA_PROGS.

Step-7:Save this file as Class_Name.java. In our example, Class name of file is Hello. So, we save this file as Sample.java in directory JAVA_PROGS.

Step-8: Right click on JAVA shortcut and click on Properties.


Step-9: Copy path you are saving programs of java and paste it to Start in label. In our example, directory is JAVA_PROGS. I copy path and paste it to Start in label.

Step-10: Start JAVA shortcut and write javac File_Name and press Enter.

Step-11: Write java Class_Name and press Enter.

Saturday 6 August 2016

How to Set Environment Variables


Step-1: Copy the path of JDK installation directory. The default path is C:\Program Files\Java\jdk1.8.0_91\bin


Step-2: Click on System Properties in My Computer Window.


Step-3: Click on Advanced system settings in System Properties window.


Step-4: Click on Environment Variables in Advanced System Setting prompt window.


Step-5: Select Path variable and Click on Edit button.


Step-6: Paste the path we were copied in first step at the last and put semicolon(;). Then, click on OK and close windows, if not necessary.

How to Install JDK


Step-1: Click on System Properties in My Computer Window.


Step-2:Then, you have to check your operating system type, which will be shown in System panel in System Properties.


Step-3:Download from appropriate link of various JDK files based on Operating system and System type...Now,I have Windows-7 64-bit ,then I will download last link named Windows x64. These links are given below in my post.


Step-4:Click on Next to start setup.


Step-5: If you want to change destination directory, you can change by clicking on change button. Otherwise you only need to click on Next button. Be careful, don't change anything except the destination, if you want.


Step-6:This will show progress of installation of JDK.


Step-7: If you want to change destination directory of JRE, you can change by clicking on change button. Otherwise you only need to click on Next button.


Step-8:This will show progress of installation of JRE.


Installation is done......

Java Development Kit


The Java Development Kit (JDK) is an implementation of either one of the Java Platform, Standard Edition, Java Platform, Enterprise Edition or Java Platform, Micro Edition platforms released by Oracle Corporation in the form of a binary product aimed at Java developers on Solaris, Linux, Mac OS X or Windows. The JDK includes a private JVM and a few other resources to finish the development of a Java Application. Since the introduction of the Java platform, it has been by far the most widely used Software Development Kit (SDK). On 17 November 2006, Sun announced that they would release it under the GNU General Public License (GPL), thus making it free software. This happened in large part on 8 May 2007, when Sun contributed the source code to the OpenJDK.


JDK contents
====================================================================================================The JDK has as its primary components a collection of programming tools, including:


  • appletviewer – this tool can be used to run and debug Java applets without a web browser
  • apt – the annotation-processing tool[4]
  • extcheck – a utility that detects JAR file conflicts
  • idlj – the IDL-to-Java compiler. This utility generates Java bindings from a given Java IDL file.
  • jabswitch – the Java Access Bridge. Exposes assistive technologies on Microsoft Windows systems.
  • java – the loader for Java applications. This tool is an interpreter and can interpret the class files generated by the javac compiler. Now a single launcher is used for both development and deployment. The old deployment launcher, jre, no longer comes with Sun JDK, and instead it has been replaced by this new java loader.
  • javac – the Java compiler, which converts source code into Java bytecode
  • javadoc – the documentation generator, which automatically generates documentation from source code comments
  • jar – the archiver, which packages related class libraries into a single JAR file. This tool also helps manage JAR files.
  • javafxpackager – tool to package and sign JavaFX applications
  • jarsigner – the jar signing and verification tool
  • javah – the C header and stub generator, used to write native methods
  • javap – the class file disassembler
  • javaws – the Java Web Start launcher for JNLP applications
  • JConsole – Java Monitoring and Management Console
  • jdb – the debugger
  • jhat – Java Heap Analysis Tool (experimental)
  • jinfo – This utility gets configuration information from a running Java process or crash dump. (experimental)
  • jmap – This utility outputs the memory map for Java and can print shared object memory maps or heap memory details of a given process or core dump. (experimental)
  • jmc – Java Mission Control
  • jps – Java Virtual Machine Process Status Tool lists the instrumented HotSpot Java Virtual Machines (JVMs) on the target system. (experimental)
  • jrunscript – Java command-line script shell.
  • jstack – utility that prints Java stack traces of Java threads (experimental)
  • jstat – Java Virtual Machine statistics monitoring tool (experimental)
  • jstatd – jstat daemon (experimental)
  • keytool – tool for manipulating the keystore
  • pack200 – JAR compression tool
  • policytool – the policy creation and management tool, which can determine policy for a Java runtime, specifying which permissions are available for code from various sources
  • VisualVM – visual tool integrating several command-line JDK tools and lightweight[clarification needed] performance and memory profiling capabilities
  • wsimport – generates portable JAX-WS artifacts for invoking a web service.
  • xjc – Part of the Java API for XML Binding (JAXB) API. It accepts an XML schema and generates Java classes.