⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nativejob.java

📁 定时器开源项目, 相对于 jcrontab, Quartz 算是更完整的一个项目, 随著开发的版本上来, 他已经脱离只是写在程序里面的计时器, 在指定的时间或区间, 处理所指定的事件. 也加入了 se
💻 JAVA
字号:
/* * Copyright James House (c) 2001-2004 *  * All rights reserved. *  * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: 1. * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. 2. Redistributions in * binary form must reproduce the above copyright notice, this list of * conditions and the following disclaimer in the documentation and/or other * materials provided with the distribution. *  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */package org.quartz.jobs;import org.quartz.Job;import org.quartz.JobDataMap;import org.quartz.JobExecutionContext;import org.quartz.JobExecutionException;import org.apache.commons.logging.LogFactory;import org.apache.commons.logging.Log;/* * <p> Built in job for executing native executables in a separate process.</p>  *  * @author Matthew payne * @author James House * @date Sep 17, 2003 @Time: 11:27:13 AM */public class NativeJob implements Job {    /*     *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *     * Constants.     *       *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */            /**     * Required parameter that specifies the name of the command (executable)      * to be ran.     */    public static final String PROP_COMMAND = "command";        /**     * Optional parameter that specifies the parameters to be passed to the     * executed command.     */    public static final String PROP_PARAMETERS = "parameters";            /**     * Optional parameter (value should be 'true' or 'false') that specifies      * whether the job should wait for the execution of the native process to      * complete before it completes.     *      * <p>Defaults to <code>true</code>.</p>       */    public static final String PROP_WAIT_FOR_PROCESS = "waitForProcess";            /*     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     *      * Interface.     *      * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     */    public void execute(JobExecutionContext context)    throws JobExecutionException {        JobDataMap data = context.getJobDetail().getJobDataMap();                String command = data.getString(PROP_COMMAND);        String parameters = data.getString(PROP_PARAMETERS);        if (parameters == null) {            parameters = "";        }        boolean wait = true;        data.containsKey(PROP_WAIT_FOR_PROCESS);            wait = data.getBoolean(PROP_WAIT_FOR_PROCESS);                this.runNativeCommand(command, parameters, wait);    }    private static Log getLog()    {        return LogFactory.getLog(NativeJob.class);    }        private void runNativeCommand(String command, String parameters, boolean wait) throws JobExecutionException {        String[] cmd = null;        String[] args = new String[2];        args[0] = command;        args[1] = parameters;        try {            //with this variable will be done the swithcing            String osName = System.getProperty("os.name");            //only will work with Windows NT            if (osName.equals("Windows NT")) {                if (cmd == null) cmd = new String[args.length + 2];                cmd[0] = "cmd.exe";                cmd[1] = "/C";                for (int i = 0; i < args.length; i++)                    cmd[i + 2] = args[i];            }            //only will work with Windows 95            else if (osName.equals("Windows 95")) {                if (cmd == null) cmd = new String[args.length + 2];                cmd[0] = "command.com";                cmd[1] = "/C";                for (int i = 0; i < args.length; i++)                    cmd[i + 2] = args[i];            }            //only will work with Windows 2000            else if (osName.equals("Windows 2000")) {                if (cmd == null) cmd = new String[args.length + 2];                cmd[0] = "cmd.exe";                cmd[1] = "/C";                for (int i = 0; i < args.length; i++)                    cmd[i + 2] = args[i];            }            //only will work with Windows XP            else if (osName.equals("Windows XP")) {                if (cmd == null) cmd = new String[args.length + 2];                cmd[0] = "cmd.exe";                cmd[1] = "/C";                for (int i = 0; i < args.length; i++)                    cmd[i + 2] = args[i];            }            //only will work with Linux            else if (osName.equals("Linux")) {                if (cmd == null) cmd = new String[args.length];                cmd = args;            }            //will work with the rest            else {                if (cmd == null) cmd = new String[args.length];                cmd = args;            }            Runtime rt = Runtime.getRuntime();            // Executes the command            getLog().info("About to run" + cmd[0] + cmd[1]);            Process proc = rt.exec(cmd);            if(wait)                proc.waitFor();             // any error message?                    } catch (Exception x) {            System.out.println("error happened in native job");            throw new JobExecutionException("Error launching native command: ", x, false);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -