Package com.vsked.dao

Examples of com.vsked.dao.SPDAO


  /**
   *
   */
  public void run() {
    try{
      SPDAO tempThreads=new SPDAO();
      String strArray[]=FileOperate.readFile(new FileOperate().getConfigFilePathForEvery()+"/DBConfig.xml").split("#");
      String tempFlag=strArray[21];
      while(true)
      {
        if("0".equals(tempFlag)){
          System.out.println(tempThreads.getTodayResult()+"|mmscat");
        }else if("1".equals(tempFlag)){
          System.out.println(tempThreads.getTodayResultForSMSCat()+"|smscat");
        }
        System.out.println();
          Thread.sleep(5000);
      }//end while
     
View Full Code Here


  /**
   *
   */
  public void run() {
    try{
      SPDAO tempThreads=new SPDAO();
      while(true)
      {
          System.out.println(tempThreads.getTodayResult()+"|");
          Thread.sleep(5000);
      }//end while
     
    }catch(Exception e){
      com.vsked.util.LogFile.writeLog(this, e);
View Full Code Here

TOP

Related Classes of com.vsked.dao.SPDAO

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.