Package utils

Examples of utils.Utils


      SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

      result = result + ("<date-time>" + f.format(currentDate)
          + "</date-time>");
    } else if (portletName.startsWith("forex")){
      Utils u = new Utils();
      String s = u.getForexDataFromNBPWebsite();
      result += s;
     
    } else if (portletName.startsWith("weather")){
      Utils u = new Utils();
      String s = u.getWeatherDataFromWPWebsite();
      result += s;
    } else if (portletName.startsWith("warcaby")) {
      System.out.println("[Warcaby]");
            CheckerController ch = null;
            try {
View Full Code Here

TOP

Related Classes of utils.Utils

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.