摘要:
1/** 2 * This class implements the functionality of fetching the size of the screen 3 */ 4package com.leo.util; 5 6/** 7 * @author Leo Share 8 * @since 07/16/2007 9 * @version 1.010 */1112class... 阅读全文
摘要:
使用Runtime.getRuntime().exec()方法可以在java程序里运行外部程序。 1. exec(String command) 2. exec(String command, String envp[], File dir) 3. exec(String cmd, String envp[]) 4. exec(String cmdarray[]) 5. exec(Str... 阅读全文