Package org.javahispano.javacup.gui.principal

Examples of org.javahispano.javacup.gui.principal.PrincipalDatos


    public static void main(String[] args) throws Exception {
        String url = System.getProperty("partido.url");
        boolean visorBasico = System.getProperty("visor.basico") != null;
        PartidoGuardado pg = new PartidoGuardado(new URL(url));
        PrincipalDatos datos = new PrincipalDatos();
        FileInputStream fis = null;
        try {
            fis = new FileInputStream(System.getProperty("user.home") + File.separator + "javacup2009" + File.separator + "config.xml");
            datos = (PrincipalDatos) xs.fromXML(fis);
        } catch (Exception ex) {
            datos = new PrincipalDatos();
            FileOutputStream fos = null;

            try {
                File out = new File(System.getProperty("user.home") + File.separator + "javacup2009" + File.separator + "config.xml");
                if (!out.getParentFile().exists()) {
View Full Code Here

TOP

Related Classes of org.javahispano.javacup.gui.principal.PrincipalDatos

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.