<div style='background-color: none transparent;'></div>

World News

Entertainment

Terminate Java Virtual Machine (JVM) Example

/*
Terminate Java Virtual Machine (JVM) Example
This Java example shows how to terminate currently running
Java Virtual Machine(JVM) using halt method of Runtime class.

*/

public class TerminateVirtualMachine {

public static void main(String args[])
{
/*
* get current Java Runtime using getRuntime()
* method of Runtime class.
*/
Runtime runtime = Runtime.getRuntime();

/*
* To forcibly terminate the currently running virtual machine, use
*
* void halt(int status)
* method of Runtime class.
*
* Usually, non-zero status is passed as status for abnormal exit.
*
* Please note that, unlike exit method, this method DOES NOT invoke
* shutdown hooks or run object finalizers.
*
*
*/

System.out.println("About to halt the current jvm");
runtime.halt(1);

/*
* THIS METHOD NEVER RETURNS NORMALLY.
* This statement will never executed, as the JVM is
* terminated!
*/
System.out.println("JVM Terminated");
}

}

/*
Typical output would be
About to halt the current jvm
*/
Continue Reading | comments

Get Free Memory of Java Virtual Machine(JVM) Example

/*
Get Free Memory of Java Virtual Machine(JVM) Example
This Java example shows how to get amount of free memory
in the Java Virtual Machine(JVM) using freeMemory method
of Java Runtime class.
*/
public class GetFreeMemory {

public static void main(String args[])
{
/*
* get current Java Runtime using getRuntime()
* method of Runtime class.
*/
Runtime runtime = Runtime.getRuntime();

/*
* To determine amount of free memory available to current
* Java Virtual Machine(JVM), use
*
* long freeMemory()
* method of Runtime class.
*/

long freeMemory = runtime.freeMemory();

System.out.println(freeMemory + " bytes free in JVM");
}


}

/*
Typical output would be
4993048 bytes free in JVM
*/
Continue Reading | comments

Get Available Processors using Java Runtime Example

/*
Get Available Processors using Java Runtime Example
This Java example shows how to get number of processors
available to current Java Virtual Machine (JVM).
*/
public class GetAvailableProcessors {

public static void main(String args[])
{
/*
* get current Java Runtime using getRuntime()
* method of Runtime class.
*/
Runtime runtime = Runtime.getRuntime();

/*
* use availableProcessors method to determine
* how many processors are available to the Java Virtual
* Machine (JVM).
*/

int numberOfProcessors = runtime.availableProcessors();

System.out.println(numberOfProcessors + " processor available to JVM");
}
}

/*
Typical output of this program would be,
1 processor available to JVM
*/
Continue Reading | comments
 
Copyright © 2011. B.Sc B.Tech MCA Ploytechnic Mini,Main Projects | Free Main Projcets Download | MCA |B.tech . All Rights Reserved
Company Info | Contact Us | Privacy policy | Term of use | Widget | Advertise with Us | Site map
Template Modify by Creating Website. Inpire by Darkmatter Rockettheme Proudly powered by Blogger