Skip to content

Tag: java

Fetched Date is setting incorrectly

So for example I save Date to database: And it is saved to database as this date for example 2021-09-01. Then I fetch this date and add two day for example and it should be 2021-09-03. This is the code: But the result I get is not the correct I want, because I get this: is should be How I

how to compare input with file data

I’m trying to compare user input name to the exists names in the file javaFx if it the same name will get alert if not another window will appear. but I always get new window even if the name exists any suggestion? Answer You want to display an alert if the same is already present in the info.txt file. …