こんにちは、次のif条件をチェックしようとすると、文字列インデックスが範囲外の例外を取得しています
String details="";
if("C".equalsIgnoreCase(reportType.substring(0,1)))
{
details="CASH BOOK FROM "+startDate+" TO "+endDate+" **"+shortName;
}
else
{
details="BANK BOOK FROM "+startDate+" TO "+endDate+" **"+shortName;
}
String index out of range: 1
: これはエラー メッセージです
前もって感謝します