java - epoch

时间:2015-10-05 13:56:48

标签: java date-format

假设我有一个类似下面的函数(例如用途):

String convertDateFormat(String inputFormat, String outputFormat, String dateString) throws Exception {
    DateFormat inputDateFormat = new SimpleDateFormat(inputFormat);
    DateFormat outputDateFormat = new SimpleDateFormat(outputFormat);
    return outputDateFormat.format(inputDateFormat.parse(dateString));
}

我需要将outputFormat设置为什么才能将Unix纪元字符串作为输出(假设dateString采用inputFormat给出的格式?)

我注意到unix命令行有一个epoch格式字符串(date +%s),但是我找不到Java中的等价字符。

编辑:这里需要的是1)一个函数,它将格式字符串作为输入并按照格式返回日期2)应该有一个格式字符串,它将输出日期作为unix时期。

有没有办法用DateFormat执行此操作?

0 个答案:

没有答案