I have to following time-string: "23.02.2015 14:06:30 +01:00" which I want to print. The printed result should be: "23.02.2015 15:06:30". After some research I just found a solution which I dont think of to be a good idea. Perhabs anyone of you has some conclusions on how to do this right? The conversion should be done with joda-time. Thanks in advance.
** Update due to explaining difference for the mentioned dublicate: My first approach was just like mentioned in Java : how to add 10 mins in my Time to add or remove the hours manually. What I tried to underline is that I dont think of this as a good idea because this could be dangerous if the input string will change (much space for possible errors). So I was wondering if joda-time has some functionality that would make my life easier adn which I didnt notice so far.