/* This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * <p/> * This library 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 * Lesser General Public License for more details. */ package org.rzo.yajsw.boot; import java.io.File; import java.lang.reflect.Method; import java.net.URLClassLoader; public class WrapperExeBooter { /** * The main method. Loads the libs required by YAJSW and starts * WrapperExe.main * * @param args * the arguments */ public static void main(String[] args) { System.setProperty("jna.nosys","true"); if (System.getProperty("java.io.tmpdir") != null) { File tmp = new File(System.getProperty("java.io.tmpdir")); if (!tmp.exists()) tmp.mkdirs(); } URLClassLoader cl = WrapperLoader.getWrapperClassLoader(); Thread.currentThread().setContextClassLoader(cl); try { Class cls = Class.forName("org.rzo.yajsw.WrapperExe", true, cl); Method mainMethod = cls.getDeclaredMethod("main", new Class[] { String[].class }); mainMethod.invoke(null, new Object[] { args }); } catch (Exception e) { e.printStackTrace(); } } }