• 把字符串转换为Double 类型


     //把字符串转换为Double 类型
        public Double convertStringToDouble(String value){
               
               Double doubleValue = new Double("0.00");
               if(value != null && !"".equals(value))
                  doubleValue = new Double(value.replaceAll(",",""));
                  
               return doubleValue;
            }

      public Integer convertStringToInteger(String value){
               
               Integer intValue = new Integer("0");
               if(value != null && !"".equals(value))
                  intValue = new Integer(value);
                  
               return intValue;
            }
            
        //把字符串转换为Date类型    
        public Date convertStringToDate(String value){
            
              Date dateValue = null;
              
              if(value != null && !"".equals(value)){
                try{
                SimpleDateFormat   format = new SimpleDateFormat("yyyy-MM-dd");  
                dateValue = format.parse(value);
                }catch(Exception e){
                      log.error("convertStrngToDouble:日期转换错误!");
                      e.printStackTrace();
                    }
                
                }
                
              return dateValue;
            }  
       

  • 相关阅读:
    ASP.NET Core 介绍和项目解读
    C#性能优化总结
    C# 线程知识--使用Task执行异步操作
    异步编程 In .NET(转载)
    .NET实现WebSocket服务端即时通信实例
    .net core 学习笔记一 Program与Startup
    .net core 自定义中间件
    c# 通过json.net中的JsonConverter进行自定义序列化与反序列化
    c# 通过HttpListener创建HTTP服务
    c# 反射实现模型深拷贝
  • 原文地址:https://www.cnblogs.com/curtainy/p/4078104.html
Copyright © 2020-2023  润新知