国产一级a片免费看高清,亚洲熟女中文字幕在线视频,黄三级高清在线播放,免费黄色视频在线看

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
類型轉(zhuǎn)換類,將字符串轉(zhuǎn)換成其他基本類型
/***************************************
 *                                     *
 *  MCC: 客服系統(tǒng)                        *
 *                                     *
 *  所有版權(quán)(c) 上海若雅信息系統(tǒng)有限公司     *
 *                                     *
 ***************************************/
package com.roya.mcc.util;
import java.util.*;
import com.roya.mcc.core.exception.TypeConvertException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
/**
 * 類型轉(zhuǎn)換類,將字符串轉(zhuǎn)換成其他基本類型
 *
 * @version <tt>Revision: 1.0</tt>
 * @author  <a href="mailto:hulk@royasoft.com.cn">hongking</a>
 */
public class TypeConvertor {
 public static Integer string2Integer(String str) throws TypeConvertException{
  int value = -1;
  try{
   value = Integer.parseInt(str);
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return new Integer(value);
 }
 
 public static Long string2Long(String str) throws TypeConvertException{
  long value = -1;
  try{
   value = Long.parseLong(str);
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return new Long(value);
 }
 
 public static Float string2Float(String str) throws TypeConvertException{
  float value = 0;
  try{
   value = Float.parseFloat(str);
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return new Float(value);
 }
 
 public static Date string2Date(String str,String format)  throws TypeConvertException{
  Date dt = null;
  try{
   if(format == null || "".equals(format)){
    DateFormat Format = DateFormat.getDateInstance();
    dt = Format.parse(str);
   }
   else{
    SimpleDateFormat sdf = new SimpleDateFormat(format);
    dt = sdf.parse(str);
   }
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return dt;
 }
 
 public static Date string2Time(String str,String format)  throws TypeConvertException{
  Date dt = null;
  try{
   if(format == null || "".equals(format)){
    DateFormat Format = DateFormat.getTimeInstance();
    dt = Format.parse(str);
   }
   else{
    SimpleDateFormat sdf = new SimpleDateFormat(format);
    dt = sdf.parse(str);
   }
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return dt;
 }
 public static Date string2DateTime(String str,String format)  throws TypeConvertException{
  Date dt = null;
  try{
   if(format == null || "".equals(format)){
    DateFormat Format = DateFormat.getDateTimeInstance();
    dt = Format.parse(str);
   }
   else{
    SimpleDateFormat sdf = new SimpleDateFormat(format);
    dt = sdf.parse(str);
   }
  }
  catch(Exception e){
   throw new TypeConvertException(e);
  }
  return dt;
 }
 
}
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
String 轉(zhuǎn)換 java.sql.Date 和java.sql.Time 格式
java.text.SimpleDateFormat.parse() 是 no thread safe
深入理解Java:SimpleDateFormat安全的時間格式化
使用SimpleDateFormat順利解析日期
java String和Date轉(zhuǎn)換
一個Java日期格式驗證的歷程
更多類似文章 >>
生活服務(wù)
分享 收藏 導長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服