leigh8347 wrote:
>
> im [sic] making an app that writes to a .txt file and at the end of each
> "save" i want to put the date and time.
>
> this is my code that turns the time/date into a string. which works
> fine.
>
> SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy
> hh:mm:ss");
> java.util.Date date = new java.util.Date();
> final String datetime = dateFormat.format(date);
>
> The problem im [sic] having is every time i save the time does not update.
> each row has the same time and date?
>
Sounds like you are using the same 'datetime' reference for each save,
perhaps by doing the save at the end of a longer process?
It's impossible to say since the problem is in the code you have not shown.
http://sscce.org/
please
--
Lew
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en