欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java Runtime类详解_动力节点Java学院整理

程序员文章站 2024-03-01 16:13:58
一、概述       runtime类封装了运行时的环境。每个 java 应用程序都有一个 runtime 类实例,使应...

一、概述

      runtime类封装了运行时的环境。每个 java 应用程序都有一个 runtime 类实例,使应用程序能够与其运行的环境相连接。一般不能实例化一个runtime对象,应用程序也不能创建自己的 runtime 类实例,但可以通过 getruntime 方法获取当前runtime运行时对象的引用。一旦得到了一个当前的runtime对象的引用,就可以调用runtime对象的方法去控制java虚拟机的状态和行为。 当不被信任的代码调用任何runtime方法时,常常会引起securityexception异常。

二、常见的应用

1、内存管理:

java提供了无用单元自动收集机制。通过totalmemory()和freememory()方法可以知道对象的堆内存有多大,还剩多少。java会周期性的回收垃圾对象(未使用的对象),以便释放内存空间。但是如果想先于收集器的下一次指定周期来收集废弃的对象,可以通过调用gc()方法来根据需要运行无用单元收集器。一个很好的试验方法是先调用gc()方法,然后调用freememory()方法来查看基本的内存使用情况,接着执行代码,然后再次调用freememory()方法看看分配了多少内存。下面的程序演示了这个构想。

//此实例来自《java核心技术》卷一
 class memorydemo{ 
    public static void main(string args[]){ 
        runtime r = runtime.getruntime(); 
        long mem1,mem2; 
        integer someints[] = new integer[1000]; 
        system.out.println("total memory is :" + r.totalmemory()); 
        mem1 = r.freememory(); 
        system.out.println("initial free is : " + mem1); 
        r.gc(); 
        mem1 = r.freememory(); 
        system.out.println("free memory after garbage collection : " + mem1); 
        //allocate integers 
        for(int i=0; i<1000; i++) someints[i] = new integer(i);  
        mem2 = r.freememory(); 
        system.out.println("free memory after allocation : " + mem2); 
        system.out.println("memory used by allocation : " +(mem1-mem2));  
        //discard intergers 
        for(int i=0; i<1000; i++) someints[i] = null; 
        r.gc(); //request garbage collection 
        mem2 = r.freememory(); 
        system.out.println("free memory after collecting " + "discarded integers : " + mem2); 
    } 
}

编译后运行结果如下(不同的机器不同时间运行的结果也不一定一样):

total memory is :2031616
initial free is : 1818488
free memory after garbage collection : 1888808
free memory after allocation : 1872224
memory used by allocation : 16584
free memory after collecting discarded integers : 1888808

2、执行其他程序

在安全的环境中,可以在多任务操作系统中使用java去执行其他特别大的进程(也就是程序)。ecec()方法有几种形式命名想要运行的程序和它的输入参数。ecec()方法返回一个process对象,可以使用这个对象控制java程序与新运行的进程进行交互。ecec()方法本质是依赖于环境。

下面的例子是使用ecec()方法启动windows的记事本notepad。这个例子必须在windows操作系统上运行。

//此实例来自《java核心技术》卷一
class execdemo { 
    public static void main(string args[]){ 
        runtime r = runtime.getruntime(); 
        process p = null; 
        try{ 
            p = r.exec("notepad"); 
        } catch (exception e) { 
            system.out.println("error executing notepad."); 
        } 
    } 
}

ecec()还有其他几种形式,例子中演示的是最常用的一种。ecec()方法返回process对象后,在新程序开始运行后就可以使用process的方法了。可以用destory()方法杀死子进程,也可以使用waitfor()方法等待程序直到子程序结束,exitvalue()方法返回子进程结束时返回的值。如果没有错误,将返回0,否则返回非0。下面是关于ecec()方法的例子的改进版本。例子被修改为等待,直到运行的进程退出:

//此实例来自《java核心技术》卷一
class execdemofini {
  public static void main(string args[]){
    runtime r = runtime.getruntime();
    process p = null;
    try{
      p = r.exec("notepad");
      p.waitfor();
    } catch (exception e) {
      system.out.println("error executing notepad.");
    }
    system.out.println("notepad returned " + p.exitvalue());
  }
}

下面是运行的结果(当关闭记事本后,会接着运行程序,打印信息):

notepad returned 0

请按任意键继续. . .

当子进程正在运行时,可以对标准输入输出进行读写。getoutputstream()方法和getinputstream()方法返回对子进程的标准输入和输出。

以上所述是小编给大家介绍的java runtime类详解_动力节点java学院整理,希望对大家有所帮助