我需要验证给定的输入字符串是一个有效的Timestamp
,以毫秒为单位。
例如,如果给定的Timestamp
String time ="1310966356458";
然后它应该返回true。
如果
String time ="1000";
那么它应该返回false;
请帮忙。提前致谢
答案 0 :(得分:9)
我们无法告诉您对您的申请有何意义。如果有一个限制对于每种情况都是正确的。它可能只是在您开发应用程序之后的时间戳而不是将来是合理的。
public static final String RELEASE_DATE = "2011/06/17";
private static final long MIN_TIMESTAMP;
static {
try {
MIN_TIMESTAMP = new SimpleDateFormat("yyyy/MM/dd").parse(RELEASE_DATE).getTime();
} catch (ParseException e) {
throw new AssertionError(e);
}
}
// after the software was release and not in the future.
public static final boolean validTimestamp(long ts) {
return ts >= MIN_TIMESTAMP && ts <= System.currentTimeMillis();
}
但是,时间戳可能代表某人出生的时间。在这种情况下,最小时间戳可能是负数。
可能是时间戳是某些东西到期的时间(如门票)有些将在过去(可能不是在今年之前),有些将在未来。 (可能提前不超过2年。)
时间可能是消极的。人类在1970年之前降落在月球上,因此时间戳将是负面的。
String MAN_ON_MOON = "1969/07/21 02:56 GMT";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/dd HH:mm Z");
System.out.println(sdf.parse(MAN_ON_MOON).getTime());
打印
-14159040000
答案 1 :(得分:0)
为什么不从你给出的时间中减去纪元时间。如果结果是否定的,则它无效。