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

📄 jdbcproperties.java

📁 eq跨平台查询工具源码 eq跨平台查询工具源码
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * JDBCProperties.java * * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or any later version. * * 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 for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. * */package org.executequery;import java.io.CharArrayWriter;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.util.Vector;import javax.xml.parsers.DocumentBuilder;import javax.xml.parsers.DocumentBuilderFactory;import javax.xml.parsers.SAXParser;import javax.xml.parsers.SAXParserFactory;import javax.xml.transform.OutputKeys;import javax.xml.transform.Transformer;import javax.xml.transform.TransformerFactory;import javax.xml.transform.sax.SAXSource;import javax.xml.transform.stream.StreamResult;import org.w3c.dom.Document;import org.xml.sax.Attributes;import org.xml.sax.ContentHandler;import org.xml.sax.DTDHandler;import org.xml.sax.EntityResolver;import org.xml.sax.ErrorHandler;import org.xml.sax.InputSource;import org.xml.sax.SAXException;import org.xml.sax.SAXParseException;import org.xml.sax.XMLReader;import org.xml.sax.helpers.AttributesImpl;import org.xml.sax.helpers.DefaultHandler;import org.executequery.databasemediators.DatabaseDriver;import org.executequery.datasource.ConnectionDataSource;import org.underworldlabs.util.FileUtils;/* ---------------------------------------------------------- * CVS NOTE: Changes to the CVS repository prior to the  *           release of version 3.0.0beta1 has meant a  *           resetting of CVS revision numbers. * ---------------------------------------------------------- *//** * * @author   Takis Diakoumis * @version  $Revision: 1.8 $ * @date     $Date: 2006/06/28 08:35:55 $ */public class JDBCProperties {        /** the default ODBC driver ID */    public static final long DEFAULT_ODBC_ID = 9999999999999l;        /** whether we need to resave the drivers - format changes */    private static boolean resaveDrivers;        /** Saved drivers collection */    private static Vector<DatabaseDriver> drivers;        private JDBCProperties() {}        public static DatabaseDriver getDatabaseDriver(String name) {        DatabaseDriver dd = null;        for (int i = 0, k = drivers.size(); i < k; i++) {            if (name.equals(drivers.elementAt(i).toString())) {                dd = drivers.elementAt(i);                break;            }                    }         return dd;    }    public static DatabaseDriver getDatabaseDriver(long id) {        for (int i = 0, k = drivers.size(); i < k; i++) {            DatabaseDriver driver = drivers.get(i);            if (id == driver.getId()) {                return driver;            }                    }         return null;    }        public static Vector<DatabaseDriver> getDriversVector() {        return drivers;    }        public static DatabaseDriver[] getDriversArray() {        DatabaseDriver[] dda = new DatabaseDriver[drivers.size()];        for (int i = 0; i < drivers.size(); i++) {            dda[i] = drivers.get(i);        }         return dda;    }        /**     * Returns whether the name specified exists within the saved      * connections. the connection object specified allows for it      * to be removed from consideration (checking against itself).     *      * @param the connection to exclude     * @param the name to validated     */    public static boolean nameExists(DatabaseDriver dd, String name) {        if (name == null) {            name = dd.getName();        }        for (int i = 0, k = drivers.size(); i < k; i++) {            DatabaseDriver _dd = drivers.get(i);            String _name = _dd.getName();            if (_dd != dd && _name.equalsIgnoreCase(name)) {                return true;            }        }        return false;    }    /**      * Saves the drivers to file.     *     * @return 1 if saved ok, 0 otherwise     */    public static synchronized int saveDrivers() throws ValidationException {        // validate the names are unique        for (int i = 0, k = drivers.size(); i < k; i++) {            DatabaseDriver dd = drivers.get(i);            for (int j = 0; j < k; j++) {                DatabaseDriver _dc = drivers.get(j);                if (nameExists(dd, null)) {                    throw new ValidationException(                            "The driver name " + dd.getName() +                            " already exists.");                }            }        }                OutputStream os = null;        try {                        // ---------------------------------------            // ----- Save the drivers to file ----            // ---------------------------------------                        TransformerFactory transFactory = TransformerFactory.newInstance();            Transformer transformer = transFactory.newTransformer();            DriverParser parser = new DriverParser();            File connXML = new File(SystemUtilities.getUserPropertiesPath() +                                    "jdbcdrivers.xml");                        os = new FileOutputStream(connXML);            DatabaseDriver[] dda = getDriversArray();            SAXSource source = new SAXSource(parser, new DriverInputSource(dda));            StreamResult r = new StreamResult(os);                        // transformer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM, "savedconnections.dtd");            transformer.setOutputProperty(OutputKeys.INDENT, "yes");            transformer.transform(source, r);                        return 1;        }        catch (Exception e) {            e.printStackTrace();            return 0;        }        finally {            try {                if (os != null) {                    os.close();                }            } catch (IOException e) {}        }    }    public static synchronized int saveDrivers(DatabaseDriver[] dda) {        OutputStream os = null;        try {            TransformerFactory transFactory = TransformerFactory.newInstance();            Transformer transformer = transFactory.newTransformer();            DriverParser cp = new DriverParser();                        File connXML = new File(SystemUtilities.getUserPropertiesPath() +                                    "jdbcdrivers.xml");                        os = new FileOutputStream(connXML);            SAXSource source = new SAXSource(cp, new DriverInputSource(dda));            StreamResult r = new StreamResult(os);            transformer.transform(source, r);                        drivers.clear();            for (int i = 0; i < dda.length; i++) {                drivers.add(dda[i]);            }                        return 1;        }        catch (Exception e) {            e.printStackTrace();            return 0;        }        finally {            try {                if (os != null) {                    os.close();                }            } catch (IOException e) {}        }    }        /**     * Loads the drivers from file and stores them within collection.     */    public static synchronized void loadDrivers() {        String confPath = SystemUtilities.getUserPropertiesPath();        String from = "org/executequery/jdbcdrivers-default.xml";        String to = confPath + "jdbcdrivers.xml";        File file = new File(to);                //Log.info("Initialising JDBC drivers.");                if (file.exists()) {                        InputStream in = null;                        try {                drivers = new Vector<DatabaseDriver>();                SAXParserFactory factory = SAXParserFactory.newInstance();                factory.setNamespaceAware(true);                SAXParser parser = factory.newSAXParser();                XMLDriverHandler handler = new XMLDriverHandler();                                in = new FileInputStream(file);                parser.parse(in, handler);                                // check if we need to save here                if (resaveDrivers) {                    saveDrivers();                }                            }                         catch (Exception e) {                e.printStackTrace();                                StringBuffer sb = new StringBuffer("Error opening JDBC driver definitions.\n");                sb.append("The file jdbcdrivers.xml is damaged and will be\nrenamed to ").                   append("jdbcdrivers.xml.old. A new empty file\nwill be created in ").

⌨️ 快捷键说明

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