<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 66,comments - 41,trackbacks - 0
    Computerworld在對(duì)多位IT高管進(jìn)行調(diào)查之后,得出了2012 最需要IT技能,不過由于調(diào)查范圍不夠大,可能會(huì)出現(xiàn)偏差,僅供參考。

    1)編程及應(yīng)用開發(fā):需求從2010年的44%上升到2012年的61%。
    2)項(xiàng)目管理:不僅僅管理人才監(jiān)管項(xiàng)目,還需要洞察用戶需求并轉(zhuǎn)述給其他IT員工,包括需求日益增加的商業(yè)分析師。
    3)服務(wù)臺(tái)支持/技術(shù)支持:隨著移動(dòng)操作系統(tǒng)的發(fā)展,需求隨之增加
    4) 網(wǎng)絡(luò)設(shè)計(jì):這類需求部分歸結(jié)于虛擬化及云計(jì)算的發(fā)展,相關(guān)人員最好具有虛擬系統(tǒng)及思杰系統(tǒng)經(jīng)驗(yàn)的人。
    5) 商務(wù)智能(Business Intelligence):這類需求大部分歸因于企業(yè)日益將重心從節(jié)省成本轉(zhuǎn)向技術(shù)投資。
    6) 數(shù)據(jù)中心:虛擬化及云技術(shù)也排在其后
    7) Web 2.0:圍繞社交媒體的技術(shù)需求將會(huì)增加,Net,AJAX及PHP作關(guān)鍵后端技術(shù),HTML,XML,CSS,F(xiàn)lash及Javascript作前端支持。
    8) 安全:2010年需求為32%,現(xiàn)在有所下降,但由于日趨嚴(yán)重的安全問題,許多人又將此提到一個(gè)新的高度
    9 )電信:對(duì)IP電話技術(shù)人員的需求也相當(dāng)大,尤其是對(duì)Cisco IPCC電話中心系統(tǒng)熟悉的人。
    posted @ 2012-01-10 20:45 kylixlu 閱讀(205) | 評(píng)論 (0)編輯 收藏

    The Oracle TO_CHAR(datetime, fmt) function converts datetime values to a string in the format specified by the fmt option.

    MySQL has the DATE_FORMAT function that allows datetime values converting to a string in the specified format.

    SQLWays converts the Oracle TO_CHAR function to the MySQL DATE_FORMAT function and converts elements of format string from Oracle to corresponding specifier in MySQL as specified in the following table.

    TABLE 56. Conversion of Oracle TO_CHAR(datetime) with format string to MySQL

    Mapping of datetime format specifiers between MySQL and Oracle
    MySQL
    Oracle (independently from register)
    Description
    %a
    DY
    Abbreviated weekday name (Sun..Sat)
    %b
    MON
    Abbreviated month name (Jan..Dec)
    %D
    -
    Day of the month with English suffix (0th, 1st, 2nd, 3rd, etc.)
    %d
    %e
    DD
     
    Day of the month, numeric ((00..31) and (0..31))
    %j
    DDD
    Day of year (001..366)
    %m
    %c
    MM
    Month, numeric ((00..12) and (0..12))
    %M
    MONTH
    Month name (January..December)
    %f
    -
    Microseconds (000000..999999)
    %i
    MI
    Minutes, numeric (00..59)
    %h
    %I
    %l
    HH
    HH12
    Hour ((01..12) and (1..12))
    %H
    %k
    HH24
    Hour ((00..23) and (0..23))
    %p
    AM
    PM
    AM or PM
    %r
    -
    Time, 12-hour (hh:mm:ss followed by AM or PM)
    %S
    %s
    SS
    Seconds ((00..59) and (0..59))
    %T
    -
    Time, 24-hour (hh:mm:ss)
    %u
    WW
    IW
    Week (00..53), where Monday is the first day of week
    %U
    -
    Week (00..53), where Sunday is the first day of week
    %V
    -
    Week (01..53), where Sunday is the first day of week, used with %X
    %v
    WW
    IW
    Week (01..53), where Monday is the first day of week, used with %x
    %W
    DAY
    Weekday name (Sunday..Saturday)
    %w
    -
    Day of the week (0=Sunday .. 6=Saturday)
    %X
    -
    Year for the week, where Sunday is the first day of the week, numeric 4 digits; used with %V
    %x
    -
    Year for the week, where Monday is the first day of the week, numeric 4 digits; used with %v
    %Y
    YYYY
    SYYYY
    IYYY
    Year, numeric, 4 digits
    %y
    YY
    IYY
    Year, numeric, 2 digits
    -
    J
    Julian day; the number of days since January 1, 4712 BC.
    -
    Q
    Quarter of year (1, 2, 3, 4; JAN-MAR = 1).
    -
    RR
    Given a year with 2 digits:
    · If the year is <50 and the last 2 digits of the current year are >=50, then the first 2 digits of the returned year are 1 greater than the first 2 digits of the current year.
    · If the year is >=50 and the last 2 digits of the current year are <50, then the first 2 digits of the returned year are 1 less than the first 2 digits of the current year.
    -
    RRRR
    Round year. Accepts either 4-digit or 2-digit input. If 2-digit, provides the same return as RR. If you don't want this functionality, then simply enter the 4-digit year.
    -
    W
    Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh.
    -
    SSSSS
    Seconds past midnight (0 - 86399).
    -
    X
    Local radix character.
    -
    Y,YYY
    Year with comma in the position.
    -
    YEAR
    SYEAR
    Year, spelled out; "S" prefixes BC dates with "-".
    -
    YYY
    3 digits of year.
    -
    Y
    1 digit of year.
    -
    IY
    2 digits of ISO year.
    -
    I
    1 digit of ISO year.
    -
    AD
    A.D.
    AD indicator with or without periods.
    -
    BC
    B.C.
    BC indicator with or without periods.
    -
    CC
    SCC
    One greater than the first two digits of a four-digit year; "S" prefixes BC dates with "-".
    For example, '20' from '1900'.
    -
    D
    Day of week (1 - 7).
    -
    A.M.
    P.M.
    Meridian indicator with periods.
    -
    TZH
    Time zone hour.
    -
    TZM
    Time zone minute.
    -
    TZR
    Time zone region information.
    -
    RM
     
    TABLE 57. Example of Conversion
    Oracle
    MySQL
    create procedure sp_to_char_date_format
    as
    begin
    -- GET ACTUAL TIME AND DATE
    select to_char(sysdate,'DD-MON-YYYY:HH24:MI')
    from dual;
    end;
    create procedure sp_to_char_date_format()
    begin
    -- GET ACTUAL TIME AND DATE
    select DATE_FORMAT(CURRENT_TIMESTAMP, '%e-%M-
    %Y:%H:%i') from dual;
    end;

    posted @ 2010-04-22 17:00 kylixlu 閱讀(1203) | 評(píng)論 (0)編輯 收藏
    近日在項(xiàng)目中寫了個(gè)OPhone 調(diào)用Webservice的工具類,主要是使用了KSoap2來實(shí)現(xiàn)的,代碼如下:

     1package com.ictehi.ophone.util;   
     2  
     3import java.io.IOException;   
     4import java.util.Iterator;   
     5import java.util.Map;   
     6  
     7import org.ksoap2.SoapEnvelope;   
     8import org.ksoap2.SoapFault;   
     9import org.ksoap2.serialization.SoapObject;   
    10import org.ksoap2.serialization.SoapSerializationEnvelope;   
    11import org.ksoap2.transport.AndroidHttpTransport;   
    12import org.ksoap2.transport.HttpTransportSE;   
    13import org.xmlpull.v1.XmlPullParserException;   
    14  
    15import android.util.Log;   
    16  
    17public class WSUtils {   
    18  
    19    public WSUtils() {   
    20    }
       
    21       
    22    /**  
    23     * @author Eric.Lu  
    24     * @param endPoint  
    25     * @param methodName  
    26     * @param params  
    27     * @param wsdl  
    28     * @return SoapObject  
    29     */
      
    30    public static SoapObject callWS(String nameSpace, String methodName,   
    31            Map params, String wsdl) {   
    32  
    33        final String SOAP_ACTION=nameSpace+methodName;   
    34        SoapObject request = new SoapObject(nameSpace, methodName);   
    35        SoapObject soapResult=null;   
    36           
    37        if(params !=null && !params.isEmpty()){   
    38            for(Iterator it=params.entrySet().iterator();it.hasNext();){//遍歷MAP   
    39                Map.Entry<String, Object> e=(Map.Entry<String, Object>) it.next();   
    40                request.addProperty(e.getKey().toString(),e.getValue());   
    41            }
       
    42        }
       
    43           
    44            /**  
    45             * 設(shè)置Soap版本  
    46             * 類型:VER1.0,VER1.1,VER1.2  
    47             */
      
    48            // SoapSerializationEnvelope envelope=new SoapSerializationEnvelope(SoapEnvelope.VER10);//SOAP 1.0   
    49            SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);// SOAP 1.1   
    50            // SoapSerializationEnvelope envelope=new SoapSerializationEnvelope(SoapEnvelope.VER12);//SOAP 1.2   
    51               
    52            envelope.dotNet=true;//是否是dotNet WebService   
    53            envelope.bodyOut = request;   
    54  
    55//          HttpTransportSE ht = new HttpTransportSE(wsdl);   
    56            AndroidHttpTransport androidHT=new  AndroidHttpTransport(wsdl);    
    57            try {   
    58//              ht.call(SOAP_ACTION, envelope);   
    59                androidHT.call(SOAP_ACTION,envelope);   
    60            }
     catch (IOException e) {   
    61                Log.e("IOException:", e.getMessage());   
    62            }
     catch (XmlPullParserException e1) {   
    63                Log.e("XmlPullParserException", e1.getMessage());   
    64            }
       
    65            try {   
    66                soapResult=(SoapObject)envelope.getResponse();   
    67            }
     catch (SoapFault e) {   
    68                Log.e("SoapFault",e.getMessage());   
    69            }
       
    70        return soapResult;   
    71    }
       
    72}
      
    73
    74
    75本文來自CSDN博客,轉(zhuǎn)載請(qǐng)標(biāo)明出處:http://blog.csdn.net/kylixlu/archive/2010/03/12/5372846.aspx
    調(diào)用這個(gè)工具類的方法如下:
     1HashMap<String, Object> params = new HashMap<String, Object>();      
     2        params.put("theCityName", peoples[position]);      
     3        String wsdl = "webservice的wsdl地址";      
     4        String nameSpace = "wsdl中的namespace";      
     5        String methodName = "方法名";//      
     6        // SoapObject result = WSUtils.callWS(nameSpace, methodName,      
     7        // wsdl,peoples[position]);      
     8        SoapObject result = WSUtils.callWS(nameSpace, methodName, params, wsdl);    
     9
    10
    11本文來自CSDN博客,轉(zhuǎn)載請(qǐng)標(biāo)明出處:http://blog.csdn.net/kylixlu/archive/2010/03/12/5372846.aspx
    posted @ 2010-03-24 09:23 kylixlu 閱讀(804) | 評(píng)論 (0)編輯 收藏
         摘要: 系統(tǒng)架構(gòu)設(shè)計(jì)師考試大綱 一、考試說明: 1.考試目標(biāo)        考試合格人員應(yīng)能夠根據(jù)系統(tǒng)需求規(guī)格說明書,結(jié)合應(yīng)用領(lǐng)域和技術(shù)發(fā) 展的實(shí)際情況,考慮有關(guān)約束條件,設(shè)計(jì)正確、合理的軟件架構(gòu),確保系統(tǒng)架構(gòu)具有良好的特性;能夠?qū)?xiàng)目睥系統(tǒng)架構(gòu)進(jìn)行描述、分析、設(shè)計(jì)與評(píng)估;能夠按照相 關(guān)標(biāo)準(zhǔn)編寫相應(yīng)的設(shè)計(jì)文檔;能夠與系統(tǒng)分析師、項(xiàng)目管理...  閱讀全文
    posted @ 2010-03-09 13:28 kylixlu 閱讀(289) | 評(píng)論 (0)編輯 收藏
    主站蜘蛛池模板: 国产 亚洲 中文在线 字幕| 自拍日韩亚洲一区在线| 亚洲精品国产电影午夜| 久久精品国产99国产精品亚洲| 亚洲一级特黄特黄的大片| 国产成人亚洲午夜电影| 老司机精品免费视频| 最近中文字幕电影大全免费版 | 好吊色永久免费视频大全| 无码免费一区二区三区免费播放| 国产精品视频免费| 国产在线19禁免费观看| 亚洲综合精品香蕉久久网| 亚洲激情电影在线| 色窝窝亚洲av网| 男女午夜24式免费视频| 女人18毛片水真多免费播放| 中文字幕专区在线亚洲| 亚洲国产精品无码久久久| 曰批免费视频播放免费| 久久久久高潮毛片免费全部播放| 免费观看的a级毛片的网站| 亚洲中久无码永久在线观看同| 亚洲视频免费观看| 男人j进女人p免费视频| 99re这里有免费视频精品| 免费国产成人高清在线观看麻豆| 久热综合在线亚洲精品| 亚洲AV无码AV吞精久久| 久久国产乱子伦精品免费不卡| 国产一级淫片a视频免费观看| 久久久亚洲精品国产| 亚洲AV无码专区在线厂| 桃子视频在线观看高清免费视频| 日本高清免费不卡在线| 久久久久亚洲av无码专区导航| 亚洲日本国产精华液| 欧洲美女大片免费播放器视频| 亚洲一级免费视频| 亚洲午夜福利717| 亚洲s码欧洲m码吹潮|