I have an accident time variable in my database which is erroneous, for example the time could show up as 55 which means 00:55 or 0 which means 00:00. Another one could be 200 which means 02:00. It has good values as well like 9:15 which I need to make 09:15. It is a 24 hour clock system. Now I am writing a small private method where I need to compare the time(which is a string) and change it to the proper one. I have used .equals to check and see if the string is equal to 0 and assigned it 00:00. I need help to check the greater than or less than for strings in Java(example if time is less than 10 patch it with 0 in the front) and also how do I change 200 to 02:00. Any help appreciated.
|
|
First of all, I strongly recommend to change your DB column to use You could use As to your actual question, something like this should help:
|
||||
|
|
I would not fixate on Here is what I mean:
|
|||
|
|
|
|||
|
|
|
But first of all, you'll need to transform Analyzing your algorithm, I see: - if string consist of 2 digits, you need to append "00:" at the start - if string consist of 3 digits, you need to append "0" at the start and split add ":" after second digit; - if string contains ":" we do nothing. I see something like this:
} You can change time formatting or optimize string building using For comparing Dates use
|
|||
|
|
|
This is BalusCs code in action
and this is the output of this code
|
|||||
|