Back to project page CATaZine-Live.
The source code is released under:
GNU General Public License
If you think the Android project CATaZine-Live listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.melegy.catazine.utils; //from w w w . jav a2s . com import android.os.Build; import java.math.BigInteger; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import com.melegy.catazine.MainApplication; public class StringUtils { public static DateFormat DATE_SHORT_FORMAT = null; static { // getBestTimePattern() is only available in API 18 and up (Android 4.3 and better) if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) { DATE_SHORT_FORMAT = new SimpleDateFormat(android.text.format.DateFormat.getBestDateTimePattern(MainApplication.getContext().getResources().getConfiguration().locale, "d MMM")); } else { DATE_SHORT_FORMAT = android.text.format.DateFormat.getDateFormat(MainApplication.getContext()); } } public static final DateFormat TIME_FORMAT = android.text.format.DateFormat.getTimeFormat(MainApplication.getContext()); public static final int SIX_HOURS = 21600000; // six hours in milliseconds static public String getDateTimeString(long timestamp) { String outString; Date date = new Date(timestamp); Calendar calTimestamp = Calendar.getInstance(); calTimestamp.setTimeInMillis(timestamp); Calendar calCurrent = Calendar.getInstance(); if (calCurrent.getTimeInMillis() - timestamp < SIX_HOURS || calCurrent.get(Calendar.DAY_OF_MONTH) == calTimestamp.get(Calendar.DAY_OF_MONTH)) { outString = TIME_FORMAT.format(date); } else { outString = DATE_SHORT_FORMAT.format(date) + ' ' + TIME_FORMAT.format(date); } return outString; } public static String getMd5(String input) { try { MessageDigest md = MessageDigest.getInstance("MD5"); byte[] messageDigest = md.digest(input.getBytes()); BigInteger number = new BigInteger(1, messageDigest); return number.toString(16); } catch (NoSuchAlgorithmException e) { return null; } } }