最初の 3 つの方法について簡単に説明します。
DOM メソッド:私は、.net に似た XmlDocument は解析時に効率的ではなく、メモリを消費し、大規模な XML の解析には適していないことを個人的に理解しています。
SAX メソッド:イベントベースの解析。XML の特定の部分が解析されると、特定のイベントがトリガーされます。イベントがトリガーされたときに何を行うかを個人的に定義できます。 .Net システムでも同様の方法はあるのでしょうか?
StAX メソッド:個人的には、これは .net の XmlReader メソッドに似ていると理解しています。このメソッドは効率が高く、メモリ使用量が少なく、大規模な XML の解析に適しています。
ただし、SAX メソッドは以前にも使用されていましたが、この記事では主に JAXB について説明します。
org.xml.sax.Attributes をインポートします。
org.xml.sax.SAXException をインポートします。
org.xml.sax.helpers.DefaultHandler をインポートします。
public class ConfigParser extends DefaultHandler {
プライベート文字列 currentConfigSection;
public SysConfigItem sysConfig;
public List<InterfaceConfigItem>interfaceConfigList;
public List<FtpConfigItem> ftpConfigList;
public List<AdapterConfigItem>adapterConfigList;
public void startDocument() は SAXException をスローします {
sysConfig = 新しい SysConfigItem();
InterfaceConfigList = new ArrayList<InterfaceConfigItem>();
ftpConfigList = new ArrayList<FtpConfigItem>();
adapterConfigList = new ArrayList<AdapterConfigItem>();
}
public void endDocument() は SAXException をスローします {
}
public void startElement(String uri, String localName, String qName, Attributes 属性) throws SAXException {
if (qName.equalsIgnoreCase("Item") &&attributs.getLength() > 0) {
if (currentConfigSection.equalsIgnoreCase("SysConfigItem")) {
sysConfig = 新しい SysConfigItem(属性);
else if (currentConfigSection.equalsIgnoreCase("InterfaceConfigItems")) {
interfaceConfigList.add(new InterfaceConfigItem(属性));
else if (currentConfigSection.equalsIgnoreCase("FtpConfigItems")) {
ftpConfigList.add(new FtpConfigItem(属性));
else if (currentConfigSection.equalsIgnoreCase("AdapterConfigItems")) {
adapterConfigList.add(新しいAdapterConfigItem(属性));
}
} それ以外 {
currentConfigSection = qName;
}
}
public void endElement(String uri, String localName, String qName) throws SAXException {
}
public voidcharacters(char ch[], int start, int length) throws SAXException {
}
}
org.xml.sax.Attributes をインポートします。
パブリック クラス ConfigItemBase {
private static DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public ConfigItemBase() {
}
/**
* 現在、いくつかの一般的なタイプのみがサポートされています。他のタイプをサポートする必要がある場合は、ここでコードを変更してください。
*
* @param 属性
*/
public ConfigItemBase(Attributes 属性) {
クラス<?> cls = this.getClass();
フィールド[] フィールド = cls.getDeclaredFields();
for (フィールド フィールド : フィールド) {
文字列 fieldType = field.getType().getSimpleName();
for (int i = 0; i <attributs.getLength(); i++) {
if (attributes.getQName(i).equalsIgnoreCase(field.getName())) {
フィールド.setAccessible(true);
試す {
if (fieldType.equalsIgnoreCase("String")) {
field.set(this,attributes.getValue(attributes.getQName(i)));
else if (fieldType.equalsIgnoreCase("Integer")) {
field.set(this, Integer.valueOf(attributes.getValue(attributes.getQName(i))));
else if (fieldType.equalsIgnoreCase("Double")) {
field.set(this, Double.valueOf(attributes.getValue(attributes.getQName(i))));
else if (fieldType.equalsIgnoreCase("Date")) {
field.set(this, GetDate(attributes.getValue(attributes.getQName(i))));
} それ以外 {
System.out.println("警告:Unhandler Field(" + field.getName() + "-" + fieldType + ")");
}
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
壊す;
}
}
}
}
public String toString() {
文字列結果 = "";
クラス<?> cls = this.getClass();
文字列 classNameString = cls.getName();
result += classNameString.substring(classNameString.lastIndexOf('.') + 1, classNameString.length()) + ":";
フィールド[] フィールド = cls.getDeclaredFields();
for (フィールド フィールド : フィールド) {
試す {
結果 += field.getName() + "= + field.get(this) + ";";
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
結果を返します。
}
/**
* 処理時間タイプの属性 (時間形式の要件は yyyy-MM-dd hh:mm:ss)
*
* @param 日付文字列
* @戻る
*/
プライベート静的日付 GetDate(String dateString) {
日付 date = null;
試す {
日付 = dateFormat.parse(dateString);
} catch (ParseException e) {
e.printStackTrace();
}
帰国日。
}
}
@XmlElement(name = "msgTransactionID")
プライベート文字列msgTransactionId = "";
@XmlElement(name = "reqNum")
プライベート文字列 reqNum = "";
@XmlElement(name = "reqBody")
private List<BatchSyncOrderRelationReqBody> reqBodyList;
public BatchSyncOrderRelationReq() {
}
public String getMsgTransactionId() {
this.msgTransactionId を返します。
}
public void setMsgTransactionId(String msgTransactionId) {
this.msgTransactionId = msgTransactionId;
}
public String getReqNum() {
this.reqNum を返します。
}
public void setReqNum(String reqNum) {
this.reqNum = reqNum;
}
public List<BatchSyncOrderRelationReqBody> getReqBodyList() {
this.reqBodyList を返します。
}
public void setReqBodyList(List<BatchSyncOrderRelationReqBody> reqBodyList) {
this.reqBodyList = reqBodyList;
}
@オーバーライド
public BatchSyncOrderRelationReq Deserialized(String interBossXmlContent) throws BusinessException {
試す {
// head に対して逆シリアル化
JAXBContext jaxbCxt4Head = JAXBContext.newInstance(MessageHead.class);
アンマーシャラー unmarshaller4Head = jaxbCxt4Head.createUnmarshaller();
MessageHead head = (MessageHead) unmarshaller4Head.unmarshal(new StringReader(interBossXmlContent));
// SyncOrderRelationReq ボディ用に逆シリアル化されます
JAXBContext jaxbCxt4Body = JAXBContext.newInstance(BatchSyncOrderRelationReq.class);
アンマーシャラー unmarshaller4Body = jaxbCxt4Body.createUnmarshaller();
BatchSyncOrderRelationReqbatchSyncOrderRelationReq = (BatchSyncOrderRelationReq) unmarshaller4Body.unmarshal(new StringReader(head.getSvcCont().trim()));
atchSyncOrderRelationReq.setHead(head);
バッチ同期順序関係要求を返します;
} catch (JAXBException e) {
throw new BusinessException("SyncOrderRelationReq.Deserialized() Error!(" + interBossXmlContent + ")", e);
}
}
}
@XmlElement(name = "oprNumb")
プライベート文字列 oprNumb = "";
@XmlElement(name = "サブスクリプション情報")
プライベート SubscriptionInfo サブスクリプション情報;
public BatchSyncOrderRelationReqBody(){
}
public BatchSyncOrderRelationReqBody(String oprNumb, SubscriptionInfo subscriptionInfo) {
this.oprNumb = oprNumb;
this.subscriptionInfo = サブスクリプション情報;
}
public String getOprNumb() {
this.oprNumb を返します。
}
public void setOprNumb(String oprNumb) {
this.oprNumb = oprNumb;
}
public SubscriptionInfo getSubscriptionInfo() {
this.subscriptionInfo を返します。
}
public void setSubscriptionInfo(SubscriptionInfo subscriptionInfo) {
this.subscriptionInfo = サブスクリプション情報;
}
}
@XmlElement(name = "oprTime")
プライベート文字列oprTime = "";
@XmlElement(name = "アクションID")
プライベート文字列アクションID = "";
@XmlElement(name = "ブランド")
プライベート文字列ブランド = "";
@XmlElement(name = "effTime")
プライベート文字列 effTime = "";
@XmlElement(name = "有効期限")
プライベート文字列の有効期限 = "";
@XmlElement(name = "料金ユーザーID")
プライベート文字列のfeeUserId = "";
@XmlElement(name = "destUser_ID")
プライベート文字列 destUserId = "";
@XmlElement(name = "actionReasonID")
プライベート文字列 actionReasonId = "";
@XmlElement(name = "servType")
プライベート文字列 servType = "";
@XmlElement(name = "subServType")
プライベート文字列サブサーブタイプ = "";
@XmlElement(名前 = "SPID")
プライベート文字列 spId = "";
@XmlElement(name = "SPServID")
プライベート文字列 spServId = "";
@XmlElement(name = "アクセスモード")
プライベート文字列アクセスモード = "";
@XmlElement(name = "料金タイプ")
プライベート文字列の料金タイプ = "";
public SubscriptionInfo() {
}
public サブスクリプション情報(
文字列 oprTime、
文字列アクションID、
ストリングブランド、
文字列 effTime、
文字列有効期限、
文字列のfeeUserId、
文字列 destUserId、
文字列 actionReasonId、
文字列 servType、
文字列サブサーブタイプ、
文字列 spId、
文字列 spServId、
文字列アクセスモード、
文字列料金タイプ) {
this.oprTime = oprTime;
this.actionId = アクション ID;
this.brand = ブランド;
this.effTime = effTime;
this.expireTime = 有効期限;
this.feeUserId = 料金ユーザーId;
this.destUserId = destUserId;
this.actionReasonId = actionReasonId;
this.servType = servType;
this.subServType = サブサーブタイプ;
this.spId = spId;
this.spServId = spServId;
this.accessMode = アクセスモード;
this.feeType = 料金タイプ;
}
public String getOprTime() {
this.oprTime を返します。
}
public void setOprTime(String oprTime) {
this.oprTime = oprTime;
}
public String getActionId() {
this.actionId を返します。
}
public void setActionId(String actionId) {
this.actionId = アクション ID;
}
public String getBrand() {
this.brand を返します。
}
public void setBrand(String ブランド) {
this.brand = ブランド;
}
public String getEffTime() {
this.effTime を返します。
}
public void setEffTime(String effTime) {
this.effTime = effTime;
}
public String getExpireTime() {
this.expireTime を返します。
}
public void setExpireTime(String ExpireTime) {
this.expireTime = 有効期限;
}
public String getFeeUserId() {
this.feeUserId を返します。
}
public void setFeeUserId(String FeeUserId) {
this.feeUserId = 料金ユーザーId;
}
public String getDestUserId() {
this.destUserId を返します。
}
public void setDestUserId(String destUserId) {
this.destUserId = destUserId;
}
public String getActionReasonId() {
this.actionReasonId を返します。
}
public void setActionReasonId(String actionReasonId) {
this.actionReasonId = actionReasonId;
}
public String getServType() {
this.servType を返します。
}
public void setServType(String servType) {
this.servType = servType;
}
public String getSubServType() {
this.subServType を返します。
}
public void setSubServType(String subServType) {
this.subServType = サブサーブタイプ;
}
public String getSpId() {
this.spId を返します。
}
public void setSpId(String spId) {
this.spId = spId;
}
public String getSpServId() {
this.spServId を返します。
}
public void setSpServId(String spServId) {
this.spServId = spServId;
}
public String getAccessMode() {
this.accessMode を返します。
}
public void setAccessMode(String accessMode) {
this.accessMode = アクセスモード;
}
public String getFeeType() {
this.feeType を返します。
}
public void setFeeType(String FeeType) {
this.feeType = 料金タイプ;
}
}