解析格式化时间
This commit is contained in:
@@ -26,6 +26,7 @@ import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
|
|||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.ZonedDateTime;
|
import java.time.ZonedDateTime;
|
||||||
import java.time.format.DateTimeFormatter;
|
import java.time.format.DateTimeFormatter;
|
||||||
@@ -225,16 +226,24 @@ public class TmNameplateCorpusServiceImpl extends ServiceImpl<TmNameplateCorpusM
|
|||||||
}else {
|
}else {
|
||||||
try {
|
try {
|
||||||
log.info("getNameplateEndTime is not null");
|
log.info("getNameplateEndTime is not null");
|
||||||
|
// 定义原始字符串的格式(注意:CST 在这里是中国标准时间,对应 Asia/Shanghai)
|
||||||
|
SimpleDateFormat inputFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss 'CST' yyyy");
|
||||||
|
inputFormat.setTimeZone(TimeZone.getTimeZone("Asia/Shanghai")); // 设置时区为 CST (China Standard Time)
|
||||||
ZonedDateTime zonedDateTime = ZonedDateTime.parse(item.getNameplateEndTime().toString());
|
ZonedDateTime zonedDateTime = ZonedDateTime.parse(item.getNameplateEndTime().toString());
|
||||||
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
|
// 定义目标格式
|
||||||
String formattedDateStartTime = zonedDateTime.format(formatter);
|
SimpleDateFormat outputFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||||
inputMap2.put("communicateDate", formattedDateStartTime);
|
// 解析原始字符串为 Date 对象
|
||||||
|
Date date = inputFormat.parse(item.getNameplateEndTime().toString());
|
||||||
|
// 格式化为目标格式
|
||||||
|
String formattedDate = outputFormat.format(date);
|
||||||
|
|
||||||
|
inputMap2.put("communicateDate", formattedDate);
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
log.info("getNameplateEndTime {}", e.getMessage());
|
log.info("getNameplateEndTime {}", e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
log.info("getNameplateEndTime");
|
log.info("getNameplateEndTime,inputMap2,",inputMap2);
|
||||||
diFyImageReq2.setUser(ConstantStr.corpus_user);
|
diFyImageReq2.setUser(ConstantStr.corpus_user);
|
||||||
|
|
||||||
inputMap2.put("businessId", item.getCustomerFlowId());
|
inputMap2.put("businessId", item.getCustomerFlowId());
|
||||||
@@ -356,7 +365,7 @@ public class TmNameplateCorpusServiceImpl extends ServiceImpl<TmNameplateCorpusM
|
|||||||
aiAnalysisErrorsMapper.update(AiAnalysisErrors.builder().aiAnalysisRequestId(oldAiAnalysisErrors.getAiAnalysisRequestId()).aiAnalysisErrorHandlingStatus("1").build(), errorQueryWrapper);
|
aiAnalysisErrorsMapper.update(AiAnalysisErrors.builder().aiAnalysisRequestId(oldAiAnalysisErrors.getAiAnalysisRequestId()).aiAnalysisErrorHandlingStatus("1").build(), errorQueryWrapper);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
log.info("没找到语料记录");
|
log.info("没找到语料记录,{}",message);
|
||||||
}
|
}
|
||||||
return ResultMsg.ok();
|
return ResultMsg.ok();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user