当前位置: 首页>>代码示例>>Java>>正文


Java DateUtil.getThreadLocalDateFormat方法代码示例

本文整理汇总了Java中org.apache.solr.common.util.DateUtil.getThreadLocalDateFormat方法的典型用法代码示例。如果您正苦于以下问题:Java DateUtil.getThreadLocalDateFormat方法的具体用法?Java DateUtil.getThreadLocalDateFormat怎么用?Java DateUtil.getThreadLocalDateFormat使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.solr.common.util.DateUtil的用法示例。


在下文中一共展示了DateUtil.getThreadLocalDateFormat方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: transformValue

import org.apache.solr.common.util.DateUtil; //导入方法依赖的package包/类
/**
 * Can be used to transform input values based on their {@link org.apache.solr.schema.SchemaField}
 * <p/>
 * This implementation only formats dates using the {@link org.apache.solr.common.util.DateUtil}.
 *
 * @param val    The value to transform
 * @param schFld The {@link org.apache.solr.schema.SchemaField}
 * @return The potentially new value.
 */
protected String transformValue(String val, SchemaField schFld) {
  String result = val;
  if (schFld != null && schFld.getType() instanceof DateField) {
    //try to transform the date
    try {
      Date date = DateUtil.parseDate(val, dateFormats);
      DateFormat df = DateUtil.getThreadLocalDateFormat();
      result = df.format(date);

    } catch (Exception e) {
      // Let the specific fieldType handle errors
      // throw new SolrException(SolrException.ErrorCode.SERVER_ERROR, "Invalid value: " + val + " for field: " + schFld, e);
    }
  }
  return result;
}
 
开发者ID:europeana,项目名称:search,代码行数:26,代码来源:SolrContentHandler.java

示例2: format

import org.apache.solr.common.util.DateUtil; //导入方法依赖的package包/类
private static String format(Date date) {
       DateFormat dv = DateUtil.getThreadLocalDateFormat();
       return dv.format(date);
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:5,代码来源:StatsServicesImpl.java

示例3: format

import org.apache.solr.common.util.DateUtil; //导入方法依赖的package包/类
public static String format(Date date) {
       DateFormat dv = DateUtil.getThreadLocalDateFormat();
       return dv.format(date).replace("-", "");
}
 
开发者ID:BassJel,项目名称:Jouve-Project,代码行数:5,代码来源:StatsCompiler.java

示例4: getThreadLocalDateFormat

import org.apache.solr.common.util.DateUtil; //导入方法依赖的package包/类
/**
 * Returns a formatter that can be use by the current thread if needed to
 * convert Date objects to the Internal representation.
 *
 * @deprecated use {@link org.apache.solr.common.util.DateUtil#getThreadLocalDateFormat()}
 */
@Deprecated
public static DateFormat getThreadLocalDateFormat() {

  return DateUtil.getThreadLocalDateFormat();
}
 
开发者ID:europeana,项目名称:search,代码行数:12,代码来源:ClientUtils.java


注:本文中的org.apache.solr.common.util.DateUtil.getThreadLocalDateFormat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。