BaseJava.java
上传用户:cccombo
上传日期:2021-01-31
资源大小:16445k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

SQL

  1. /*
  2.  Generic Runtime Library (GRT)
  3.  Copyright (C) 2005 MySQL AB
  4.  
  5.  This library is free software; you can redistribute it and/or
  6.  modify it under the terms of the GNU Lesser General Public
  7.  License as published by the Free Software Foundation; either
  8.  version 2.1 of the License, or (at your option) any later version.
  9.  This library is distributed in the hope that it will be useful,
  10.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.  Lesser General Public License for more details.
  13.  You should have received a copy of the GNU Lesser General Public
  14.  License along with this library; if not, write to the Free Software
  15.  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
  16.  */
  17. package com.mysql.grt.modules;
  18. import java.util.Vector;
  19. import java.io.File;
  20. import com.mysql.grt.*;
  21. /**
  22.  * @author Mike
  23.  * 
  24.  * Java base module
  25.  */
  26. public class BaseJava {
  27. /**
  28.  * Static function to return information about this class to the GRT
  29.  * environment
  30.  * 
  31.  * @return returns a GRT XML string containing the infos about this class
  32.  */
  33. public static String getModuleInfo() {
  34. return Grt.getModuleInfoXml(BaseJava.class, "");
  35. }
  36. public static String engineVersion() {
  37. return "Java " + System.getProperty("java.version") + " "
  38. + System.getProperty("java.vendor");
  39. }
  40. public static GrtList getMessages() {
  41. GrtList msgList = new GrtList("GrtMessage");
  42. Vector msgs = Grt.getInstance().getMessages();
  43. for (int i = 0; i < msgs.size(); i++) {
  44. msgList.addObject(msgs.get(i));
  45. }
  46. msgs.clear();
  47. return msgList;
  48. }
  49. public static int javaClassExists(String className) {
  50. int res = 0;
  51. try {
  52. if (Class.forName(className) != null)
  53. res = 1;
  54. } catch (ClassNotFoundException e) {
  55. // ignore exception
  56. }
  57. return res;
  58. }
  59. public static int java2GrtXmlLogging(Integer enable) {
  60. Grt.getInstance().java2GrtXmlLogging(enable.intValue());
  61. return Grt.getInstance().java2GrtXmlLogging();
  62. }
  63. public static void clearLogs() {
  64. Grt.deleteDir(new File(Grt.getInstance().getApplicationDataPath()
  65. + "log"));
  66. }
  67. }