作者 朱兆平

航班日期格式化

... ... @@ -9,38 +9,10 @@
* 文件读取
* 航空报文解析
* rabbitMQ工具类
[ZCZC
QD HKGVICX
.CGOFD1E 261934
FSU/6
043-85718776HKGCGO/T1K11.0
DLV/26JUN1934/CGO/T1K11.0
=
NNNN]
* POI-excel-word工具类
[ZCZC
QD HKGVICX
.CGOFD1E 261917
FSU/12
160-08065536CGOMAA/T4K762.0
FOH/26JUN1917/CGO/T4K762.0/AGILITY LOGISTICS SHANGHAI LIMITED
/MC5.93DGMC
=
NNNN]
[ZCZC
QD CHACSRU
.CGOFD1E 261815
FSU/8
580-20731631CGOORD/T43K6798.0
DEP/5X173/26JUN/CGOICN/T43K6798.0/A1811/E1910
=
NNNN]
* bean-map互转工具类
 
\ No newline at end of file
... ...
... ... @@ -9,6 +9,7 @@ import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
/**
... ... @@ -540,4 +541,23 @@ public final class DateUtil {
return time;
}
/**
* 格式化航班日期类型
* @param dateStr
* @return
* @throws ParseException
*/
public static Date dateFormatFlight(String dateStr) throws ParseException{
SimpleDateFormat sdf = new SimpleDateFormat("ddMMMyyyy", Locale.ENGLISH);
try {
Date date = sdf.parse(dateStr);
System.out.println(date);
return date;
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
}
... ...
... ... @@ -20,6 +20,16 @@ public class XMLXPath {
}
}
public static String getSingleValueByNodePath(Node document,String path){
Node node = document.selectSingleNode(path);
if (node!=null){
String nodeValue = node.getStringValue();
return nodeValue;
}else {
return null;
}
}
public static List<Node> getPathValues(Document document,String path){
List<Node> nodes= document.selectNodes(path);
return nodes;
... ...