本文整理汇总了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();
}
示例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));
}
}
示例3: DateWriter
import org.jretty.util.DateFormatUtils; //导入依赖的package包/类
public DateWriter(String dateFormatStyle) {
dateFormat = new DateFormatUtils(dateFormatStyle);
}