我有一个网络服务,我们将日期作为字符串传递::
fromDate=2012-11-06 22:16:23.157&toDate=2012-11-06 22:44:56.367
(这是类型 1)
和
fromDate=2012-11-06&toDate=2012-11-07
(这是类型 2)
现在,我想要的是当我们有“TYPE 1”时,然后 -
List<something> myList=vc.getsomething(FromDate,ToDate);
else{
String newFromDate = fromDate + " " + constant.ZERO_APPEND;
String newToDate = toDate + " " + constant.ZERO_APPEND;
List<something> myList=vc.getsomething(newFromDate,newToDate);
}
这该怎么做..??请帮忙..