本文整理汇总了Java中org.apache.pdfbox.util.DateConverter类的典型用法代码示例。如果您正苦于以下问题:Java DateConverter类的具体用法?Java DateConverter怎么用?Java DateConverter使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
DateConverter类属于org.apache.pdfbox.util包,在下文中一共展示了DateConverter类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDateConversion
import org.apache.pdfbox.util.DateConverter; //导入依赖的package包/类
/**
* Test that will show when the workaround is in place.
*/
public void testDateConversion() throws Exception {
Calendar c = DateConverter.toCalendar("D:20050526205258+01'00'");
assertEquals(2005, c.get(Calendar.YEAR));
assertEquals(05-1, c.get(Calendar.MONTH));
assertEquals(26, c.get(Calendar.DAY_OF_MONTH));
assertEquals(20, c.get(Calendar.HOUR_OF_DAY));
assertEquals(52, c.get(Calendar.MINUTE));
assertEquals(58, c.get(Calendar.SECOND));
//assertEquals(0, c.get(Calendar.MILLISECOND));
}
示例2: toDate
import org.apache.pdfbox.util.DateConverter; //导入依赖的package包/类
@SneakyThrows
private Date toDate(String cosVal) {
if (cosVal == null) {
return null;
}
String strippedDate = cosVal.replace("^D:", "");
Calendar cal = null;
cal = DateConverter.toCalendar(strippedDate);
return cal == null ? null : cal.getTime();
}