I want convert value in Info_TimeD1[] from string array to long array and store in ohh[].I found error and I can't pass this case.
String[] Info_TimeD1;
String[] ohh;
int i;
int L1 = Info_TimeD1.length;
for(int i=0;i<L1;i++)
{
Long Timestamp1[i] = Long.parseLong(Info_TimeD1[i]); // error this line
ohh[i] = getDateCurrentTimeZone1(Timestamp1[i]);
}