Java Runtime class

Source: Internet
Author: User

The runtime class represents the runtime environment of a Java program, each Java program has a corresponding runtime instance, which is connected to the runtime environment by the application, and the application cannot create its own runtime instance, but can pass the GetRuntime () method to get the runtime object associated with it.

runtime represents the runtime environment of a Java program and can access information about the JVM, such as the number of processors and memory information.

  1. import  java.io.bufferedreader;  
  2. Import  Java.io.InputStreamReader;
  3. Public class Test {
  4. Public Static voidMain (string[] args)throwsException
  5. {
  6. Runtime Rt=runtime.getruntime ();
  7. System.out.println (Rt.freememory ());
  8. System.out.println (Rt.availableprocessors ());
  9. System.out.println (Rt.totalmemory ());
  10. System.out.println (Rt.maxmemory ());
  11. System.out.println (Rt.availableprocessors ());
  12. }
  13. }


Runtime can start a single process directly to run the operating system commands

  1. import  java.io.bufferedreader;  
  2. Import  Java.io.InputStreamReader;
  3. Public class Test {
  4. Public Static voidMain (string[] args)throwsException
  5. {
  6. Runtime Rt=runtime.getruntime ();
  7. Rt.exec ("notepad.exe");
  8. }
  9. }

Copyright NOTICE: This article for Bo Master http://www.zuiniusn.com original article, without Bo Master permission not reproduced.

Java Runtime class

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.