MicroStrategy 中的命令管理器程序未转换为最新版本

Command manager procedure in MicroStrategy not converting to date

我 运行 在 Microstrategy 的命令管理器程序下面,但它不会将字符串转换为日期,尝试了很多选项。有人可以帮忙吗?

*********** PROCEDURE***************************************

String sQuery = "LIST ALL SUBSCRIPTIONS FOR SCHEDULE \"" + sScheduleName + "\" FOR PROJECT \"" + projectName + "\";";
ResultSet oSubs=executeCapture(sQuery);
oSubs.moveFirst();

while(!oSubs.isEof()){
String sSubsName = oSubs.getFieldValueString(DisplayPropertyEnum.GUID);
ResultSet RecList = executeCapture("LIST ALL PROPERTIES FOR SUBSCRIPTION GUID " +sSubsName+ " FOR PROJECT \"projectname\";");
RecList.moveFirst();
while(!RecList.isEof()){
ResultSet oResultSetSubProps = (ResultSet)RecList.getResultCell(SUBSCRIPTION_RESULT_SET).getValue();
oResultSetSubProps.moveFirst();
while(!oResultSetSubProps.isEof())
{
String d1 = oResultSetSubProps.getFieldValueString(DisplayPropertyEnum.EXPIRATIONDATE);

// the below few lines in red return nothing, its unable to convert to Date as it is unable to recognize the Expiration date in the String format.


java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat("M/dd/yyyy");
String dateInString = d1;
Date date = formatter.parse(dateInString);
printOut(formatter.format(date));


oResultSetSubProps.moveNext();
}
RecList.moveNext();
}
oSubs.moveNext();
}

这对我有用。该字符串既不为空,也不为空,甚至没有空白,但它仍然无法解析它,所以我不得不使用字符串的长度。

java.text.DateFormat formatter = new    java.text.SimpleDateFormat("M/d/yyyy",Locale.US);
     String dateInString = d1;
    if(d1.trim().length()>0)
    {
    Date date = formatter.parse(dateInString);
    if(todaydate.compareTo(date)>0)
    {
    printOut(name+";"+formatter.format(date));
     }
    }
if(d1.contains("/"))
{
    Date EDate=new Date(d1);  
    Date today= new Date();
    if(d1.compareTo(today)<0)
    {
    printOut("Expired");
    }
}
else
{
printOut("Active");
}

//可以在 Else 条件下处理空白或空值。希望对您有所帮助..