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


Java DateFormatUtils类代码示例

本文整理汇总了Java中org.jretty.util.DateFormatUtils的典型用法代码示例。如果您正苦于以下问题:Java DateFormatUtils类的具体用法?Java DateFormatUtils怎么用?Java DateFormatUtils使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: main

import org.jretty.util.DateFormatUtils; //导入依赖的package包/类
public static void main(String[] args) {
    System.out.println(System.currentTimeMillis());
    Properties producerProps = new Properties();

    producerProps.put("acks", "all");
    producerProps.put("retries", "0");

    producerProps.put("buffer.memory", "33554432"); // default 32MB

    producerProps.put("max.block.ms", "10000");

    producerProps.put("bootstrap.servers", "172.16.1.164:9092,172.16.1.165:9092,172.16.1.166:9092");
    producerProps.put("key.serializer", "org.apache.kafka.common.serialization.StringSerializer");
    producerProps.put("value.serializer", "org.apache.kafka.common.serialization.StringSerializer");
    
    DefaultProducerFactory<String, String> fa = new DefaultProducerFactory(producerProps);

    ProducerTemplate<String, String> publisher = new ProducerTemplate<>(fa);

    String topicName = "ZTEST2";
    publisher.setDefaultTopic(topicName);

    int total = 100;
    while (total-- > 0) {
        for (int i = 0; i < 10; i++) {
            String val = AlgorithmUtils.shortMsg(DateFormatUtils.getUniqueDatePattern_TimeMillis_noSplit() + i);
            for(int j=0; j<10; j++){
                val += "-" + val; 
            }
            
            publisher.sendDefault(DateFormatUtils.getUniqueDatePattern_TimeMillis_noSplit() + i, val.substring(0, 5000));
        }
        ThreadUtils.sleepThread(10L);
    }
    
    publisher.close();

}
 
开发者ID:jretty-org,项目名称:kafka-xclient,代码行数:39,代码来源:ProducerTest.java

示例2: write

import org.jretty.util.DateFormatUtils; //导入依赖的package包/类
@Override
public void write(DefaultWriter out, Date date) {
    if (useTimeValue) {
        out.write(date.getTime());
        return;
    }
    if (dateFormat == null) {
        out.writeObject(DateFormatUtils.format_yyyy_MM_dd_HH_mm_ss(date));
    }
    else {
        out.writeObject(dateFormat.format(date));
    }
}
 
开发者ID:jretty-org,项目名称:jretty-util,代码行数:14,代码来源:DateWriter.java

示例3: DateWriter

import org.jretty.util.DateFormatUtils; //导入依赖的package包/类
public DateWriter(String dateFormatStyle) {
    dateFormat = new DateFormatUtils(dateFormatStyle);
}
 
开发者ID:jretty-org,项目名称:jretty-util,代码行数:4,代码来源:DateWriter.java


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