我想比较用户键入的字符串和我从日期格式化为字符串的另一个字符串以获得 excel 值。我有一个对象数组。每个对象都有日期数据。我想从用户输入的日期打印这些对象。但是,我编写的用于查找对象索引的方法无法正常工作。我希望你得到我。这是我的代码;`
System.out.print("Please enter a date:");
input = new Scanner(System.in);
String date1=input.next();
int index_tarih=searching(date1, myObjects);//myObjects is my array storing my data from excel.
public static int searching(String datess,sicaklik_nesne dayss[])
{ int number=0;
for(int index_number=0;index_number<dayss.lenght;index_number++)
{
if(dayss[index_number].Gun==datess)
{
sayi=9;
}
}
enter code here
return sayi;
}
`
i.Gun=new DataFormatter().formatCellValue(cell);// this code from my class retrieving excel data.