Simple java library for displaying dates as relative time ago language.
- 4 days ago
- 15 years ago
- a minute ago
- just now
Gradle:
compile 'com.github.marlonlom:timeago:$latestVersion'
Maven:
<dependency>
<groupId>com.github.marlonlom</groupId>
<artifactId>timeago</artifactId>
<version>$latestVersion</version>
</dependency>
String text = TimeAgo.using(timeInMillis);
Where timeInMillis, based on current date and time, is defined like
/* You can use java.util.Calendar.getInstance().getTimeInMillis()*/
/* Also, with java 8, java.time.Instant.now().toEpochMilli() */
long timeInMillis = System.currentTimeMillis();
For specific language usage, use TimeAgoMessages:
Locale LocaleBylanguageTag = Locale.forLanguageTag("es");
TimeAgoMessages messages = new TimeAgoMessages.Builder().withLocale(LocaleBylanguageTag).build();
String text = TimeAgo.using(timeInMillis, messages);
Languages supported: Spanish (es), English (en), Dutch (nl), German (de), French (fr), Italian (it), Portuguese (pt), Indonesian (id), Czech (cs), Arabic (ar).
Check the Demo here.
If you like this library, please tell others about it 👍👍
- Follow me on Twitter: @Marlonlom
- Contact me on LinkedIn: Marlonlom
Copyright 2016 marlonlom
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.