midplauncher.java

来自「This is a resource based on j2me embedde」· Java 代码 · 共 119 行

JAVA
119
字号
/* *  * Copyright  1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation.  *  * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt).  *  * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA  *  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions.  *//* * This is a standalone launcher that launches MIDP using * the MIDPImplementationClassLoader. */package sun.misc;import java.lang.reflect.Method;import java.lang.reflect.InvocationTargetException;import java.io.File;import java.util.StringTokenizer;public final class MIDPLauncher {    static private String suitePath[] = new String[0];    public static String[] getMidletSuitePath() {        return suitePath;    }    public static void main(String args[]) {        int i, j, num;        File midppath[] = new File[0];        String midppathString = null;        String suitepathString = null;         StringTokenizer components;        String mainArgs[];        int numMainArgs = args.length;        /* Process arguments */        for (i = 0; i < args.length; i++) {            String arg = args[i];            if (arg.equals("-midppath")) {                midppathString = args[++i];                components = new StringTokenizer(midppathString,                    System.getProperty("path.separator", ":"));                num = components.countTokens();                midppath = new File[num];                for (j = 0; j < num; j++) {                    midppath[j] = new File(components.nextToken());                }                args[i-1] = args[i] = null;                numMainArgs -= 2;            } else if (arg.equals("-suitepath")) {                suitepathString = args[++i];                components = new StringTokenizer(suitepathString,                    System.getProperty("path.separator", ":"));                num = components.countTokens();                suitePath = new String[num];                for (j = 0; j < num; j++) {                    suitePath[j] = components.nextToken();	        }                args[i-1] = args[i] = null;                numMainArgs -= 2;            }        }        /* Prepare args for the MIDletSuiteLoader.main() */        int k = 0;        mainArgs = new String[numMainArgs];        for (j = 0; j < args.length; j++) {            if (args[j] != null) {                mainArgs[k++] = args[j];	    }	}        /* Create MIDPImplementationClassLoader */        MIDPImplementationClassLoader midpImplCL =             MIDPConfig.newMIDPImplementationClassLoader(midppath);        /* Load MIDletSuiteLoader using MIDPImplementationClassLoader         * and invoke it's main() method. */	String loaderName = null;        try {            loaderName = System.getProperty(                "com.sun.midp.mainClass.name",                "com.sun.midp.main.CdcMIDletSuiteLoader");            Class suiteloader = midpImplCL.loadClass(loaderName);            Class loaderArgs[] = {mainArgs.getClass()};            Method mainMethod = suiteloader.getMethod("main", loaderArgs);            Object args2[] = {mainArgs};            mainMethod.invoke(null, args2);        } catch (ClassNotFoundException ce) {            System.err.println("Can't find " + loaderName);        } catch (NoSuchMethodException ne) {            System.err.println("Can't access MIDletSuiteLoader main()");        } catch (IllegalAccessException ie) {            System.err.println("Can't invoke MIDletSuiteLoader main()");        } catch (InvocationTargetException ite) {            ite.printStackTrace();        }    }}

⌨️ 快捷键说明

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