Reputation: 461
Due to tz-annoucement, my application need to update timezone data to tzdata2016e
Here provided two sources for update
The procedure steps are
The questions are: 1. Why an error did occur? 2. What I have done wrong? Is it with the step of updating (tzcode before tzdata, or tzdata before tzcode)
Thanks for your help
Edit:
I use tzupdater.jar of Java to update tzdata. Refer to the document, it is for update tzdata not tzcode. How should I update tzcode?
Upvotes: 0
Views: 283
Reputation: 241673
Java doesn't use tzcode. It has its own code implementation - in Java.
Tzcode is C source code for Linux, OSX, and other Posix operating systems.
You only need to run tzdata through the Java tzupdater.
Upvotes: 1