Hashtable orderContact = getOrderContact(contentPCls.getWoNo(), runTime);
       String scnOrderType = "";
       String TelNo ="";
       String scnName = "";
       String scnTelNo = "";
       String scnMblNo = "";
       String TechNo = "";
       String PrimeNo = "";
       if (orderContact != null ) {
         for (Iterator it = orderContact.entrySet().iterator(); it.hasNext(); ) {
           scnOrderType = (String) orderContact.get("order_contact_type");
           scnName = (String) orderContact.get("Name");
           TelNo = (String) orderContact.get("tel_no");
           scnMblNo = (String) orderContact.get("mbl_no");           if (scnOrderType == "INSTALL") {
             scnName =scnName;
             scnTelNo =TelNo;
             scnMblNo =scnMblNo;             
           }
           else if (scnOrderType == "TECHNICAL") {
             TechNo =TelNo;
           }
           else if (scnOrderType == "PRIME") {
             PrimeNo =TelNo;
           }
         }
       }
       contentPCls.setScnName(scnName);
       contentPCls.setScnTelNo(scnTelNo);
       contentPCls.setScnMblNo(scnMblNo);
       contentPCls.setTechNo(TechNo);
       contentPCls.setPrimeNo(PrimeNo); 运行getOrderContact 之后cpu 100%,  怎么改program?