- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有:
String date = "2010-10-9 12:00:00";
我想解析该字符串,然后从当前日期/时间中减去该日期/时间,以便我可以输出类似于“2 天前”的字符串。
最佳答案
这是我正在使用的辅助类,它扩展了 Android 的标准 DateUtils。它有一个高级逻辑,对于今天的时间戳,它会显示秒或分钟或小时,而对于其他时间戳,它会显示日期。
您可以在 getTimeDiffString
方法中根据需要调整逻辑。作为参数,您将解析您在上述代码中获取的 Date date = formatter.parse(dateString);
的时间戳。
代码逻辑符合您从 Facebook 或 Twitter 了解到的“时间戳显示”。
public class DateTimeUtils extends DateUtils {
private static String mTimestampLabelYesterday;
private static String mTimestampLabelToday;
private static String mTimestampLabelJustNow;
private static String mTimestampLabelMinutesAgo;
private static String mTimestampLabelHoursAgo;
private static String mTimestampLabelHourAgo;
/**
* Singleton contructor, needed to get access to the application context & strings for i18n
* @param context Context
* @return DateTimeUtils singleton instanec
* @throws Exception
*/
public static DateTimeUtils getInstance(Context context) {
mCtx = context;
if (instance == null) {
instance = new DateTimeUtils();
mTimestampLabelYesterday = context.getResources().getString(R.string.WidgetProvider_timestamp_yesterday);
mTimestampLabelToday = context.getResources().getString(R.string.WidgetProvider_timestamp_today);
mTimestampLabelJustNow = context.getResources().getString(R.string.WidgetProvider_timestamp_just_now);
mTimestampLabelMinutesAgo = context.getResources().getString(R.string.WidgetProvider_timestamp_minutes_ago);
mTimestampLabelHoursAgo = context.getResources().getString(R.string.WidgetProvider_timestamp_hours_ago);
mTimestampLabelHourAgo = context.getResources().getString(R.string.WidgetProvider_timestamp_hour_ago);
}
return instance;
}
/**
* Checks if the given date is yesterday.
*
* @param date - Date to check.
* @return TRUE if the date is yesterday, FALSE otherwise.
*/
public static boolean isYesterday(long date) {
final Calendar currentDate = Calendar.getInstance();
currentDate.setTimeInMillis(date);
final Calendar yesterdayDate = Calendar.getInstance();
yesterdayDate.add(Calendar.DATE, -1);
return yesterdayDate.get(Calendar.YEAR) == currentDate.get(Calendar.YEAR) && yesterdayDate.get(Calendar.DAY_OF_YEAR) == currentDate.get(Calendar.DAY_OF_YEAR);
}
public static String[] weekdays = new DateFormatSymbols().getWeekdays(); // get day names
public static final long millisInADay = 1000 * 60 * 60 * 24;
...
/**
* Displays a user-friendly date difference string
* @param timedate Timestamp to format as date difference from now
* @return Friendly-formatted date diff string
*/
public String getTimeDiffString(long timedate) {
Calendar startDateTime = Calendar.getInstance();
Calendar endDateTime = Calendar.getInstance();
endDateTime.setTimeInMillis(timedate);
long milliseconds1 = startDateTime.getTimeInMillis();
long milliseconds2 = endDateTime.getTimeInMillis();
long diff = milliseconds1 - milliseconds2;
long hours = diff / (60 * 60 * 1000);
long minutes = diff / (60 * 1000);
minutes = minutes - 60 * hours;
long seconds = diff / (1000);
boolean isToday = DateTimeUtils.isToday(timedate);
boolean isYesterday = DateTimeUtils.isYesterday(timedate);
if (hours > 0 && hours < 12) {
return hours==1? String.format(mTimestampLabelHourAgo,hours) : String.format(mTimestampLabelHoursAgo,hours);
} else if (hours <= 0) {
if (minutes > 0)
return String.format(mTimestampLabelMinutesAgo,minutes);
else {
return mTimestampLabelJustNow;
}
} else if (isToday) {
return mTimestampLabelToday;
} else if (isYesterday) {
return mTimestampLabelYesterday;
} else if (startDateTime.getTimeInMillis() - timedate < millisInADay * 6) {
return weekdays[endDateTime.get(Calendar.DAY_OF_WEEK)];
} else {
return formatDateTime(mCtx, timedate, DateUtils.FORMAT_NUMERIC_DATE);
}
}
}
而 strings.xml 包含:
<string name="WidgetProvider_timestamp_today">Today</string>
<string name="WidgetProvider_timestamp_yesterday">Yesterday</string>
<string name="WidgetProvider_timestamp_hour_ago">%s hour ago</string>
<string name="WidgetProvider_timestamp_hours_ago">%s hours ago</string>
<string name="WidgetProvider_timestamp_minutes_ago">%s minutes ago</string>
<string name="WidgetProvider_timestamp_just_now">Just now</string>
关于Java(Android) 将 SQLite 日期转换为 "x days ago",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3910042/
我正在开发一个 SQLite 数据库。数据库已经填满了,但我想重构它。这是我需要做的一个示例: 我目前有一张 table : CREATE TABLE Cars (ID INTEGER PRIMARY
我正在使用 Mono、SQLite、Dapper 和 Dapper 扩展。我可以从数据库中读取数据,但插入不起作用。我正在使用 sqlite 的 Mono 驱动程序。 错误并不能提供太多信息,至少对我
我有一个使用 SQLite 的 Windows Phone 8 应用程序。该应用程序具有许多数据库功能,并包含一个 sqlite 数据库文件,在运行该应用程序时,该文件将被复制到本地文件夹并进行访问。
为 sqlite 创建索引时有排序顺序。 https://sqlite.org/lang_createindex.html Each column name or expression can be
顾名思义,我怀疑如果有一些引用被删除的表会发生什么,例如表的某些字段的索引。 SQLite是否会自动处理?在执行drop命令之前,数据库所有者是否应注意任何实例? 最佳答案 我认为不需要家政服务。 S
我想知道是否有可能将从计数中获得的整数转换为REAL 类似于以下内容(尽管这不起作用) SELECT CAST (COUNT (ColumnA) AS Count) AS REAL) FROM Tab
我无法在SQLite数据库上执行一些更新。我正在Windows上使用SQLite 3 Shell。 我正在运行以下命令: update resovled_chrom_counts set genus
我知道SQLite中的触发器顺序是不确定的(您不能确定将首先执行哪个触发器),但是表约束和触发器之间的关系又如何呢? 我的意思是,假设我在一个列中有一个UNIQUE(或CHECK)约束,并且在该表上有
我的 CustomTags 表可能有一系列“临时”记录,其中 Tag_ID 为 0,并且 Tag_Number 将有一些五位数的值。 定期,我想清理我的 Sqlite 表以删除这些临时值。 例如,我可
我有A,B,C和D的记录。 我的SQL1 SELECT * FROM main_table order by main_table.date desc limit 2返回A和B。 我的SQL2 SEL
select round(836.0)返回836.0 我如何删除sqlite查询中的尾随零。 836.00应该是836 836.440应该是836.44 最佳答案 如果需要836.44,则需要十进制返
我正在研究RQDA中的文本,并且正在使用Firefox SQLite Manager访问数据库,以便可以更轻松地搜索文件。我创建并填充了虚拟表: CREATE VIRTUAL TABLE texts
我有这样的数据: table1 id | part | price 1 | ox900 | 100 2 | ox980 | 200 和 table2 id | part | price 1
我正在尝试将一些数据插入现有的SQLite表中。该表和数据库是使用相同的API创建的,但是由于某种原因,插入操作无效,并且从不给我任何错误消息。 我正在BlackBerry 9550模拟器上对此进行测
例如,我在名为SALARY的列中插入一个值。如果插入的值大于1000,我想将字符串HIGH插入到RANK列中,否则将插入LOW中。 我可以使用SQLite做到吗? 最佳答案 在插入之前使用触发器,然后
假设我有一个包含三列A,B,C的表t1,其中(A,B)包含唯一键(具有数十万行)。由于90%的查询将采用SELECT C FROM t1 WHERE A =?和B = ?,我想我要为A,B和C提供覆盖
在一个SQLite3数据库中,我有一个表“ projects”,其id字段由以下方式组成: [user id]_[user's project id] 例如,用户ID = 45,这是一些数据: 45_
我了解PRAGMA foreign_key和ON DELETE RESTRICT/NO ACTION的概念,但是我面临的是另一种情况。 我需要删除一个父行,但保持与之关联的子行。例如: CREATE
我的c#应用程序从Web服务1读取文件列表,并将完整的文件名插入table1,然后从第二个Web服务读取list并将它们插入到table2。 这些表具有相同的结构,如下所示: create table
我在以下情况下尝试将Record1的ID更新为Record2的ID: 两个表中的名称相同,并且 在Record2中权重更大。 记录1 | ID | Weight | Name | |----|----
我是一名优秀的程序员,十分优秀!