最初の 3 つの方法について簡単に説明します。
DOM メソッド: 私は、.net に似た XmlDocument は解析時に効率的ではなく、メモリを消費し、大規模な XML の解析には適していないことを個人的に理解しています。
SAX メソッド: イベントベースの解析。XML の特定の部分が解析されると、特定のイベントがトリガーされます。イベントがトリガーされたときに何を行うかを個人的に定義できます。 .Net システムでも同様の方法はあるのでしょうか?
StAX メソッド: 個人的には、.net の XmlReader メソッドに似ていると理解しています。これは効率が高く、メモリ使用量が少なく、大規模な XML の解析に適しています。
ただし、SAX メソッドは以前にも使用されていましたが、この記事では主に JAXB について説明します。
次のようにコードをコピーします。
java.util.ArrayListをインポートします。
java.util.Listをインポートします。
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 {
}
}
次のようにコードをコピーします。
java.lang.reflect.Fieldをインポートします。
java.text.DateFormatをインポートします。
インポート java.text.ParseException;
インポート java.text.SimpleDateFormat;
java.util.Dateをインポートします。
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();
}
帰国日。
}
}
以下では、最も便利な JAXB (Java Architecture for XML Binding) に焦点を当てます。
ここでは例として、より複雑なモバイル BatchSyncOrderRelationReq インターフェイス XML を使用します (これを理解できる人であれば基本的に十分だと思います)。メッセージ フォーマットは次のとおりです (SvcCont の CDATA コンテンツはメッセージ本文であり、これは不快です)。
次のようにコードをコピーします。
<?xml version="1.0" エンコーディング="UTF-8" スタンドアロン="はい" ?>
<インターボス>
<バージョン>0100</バージョン>
<テストフラグ>0</テストフラグ>
<BIPタイプ>
<BIPコード>BIP2B518</BIPコード>
<アクティビティコード>T2101518</アクティビティコード>
<アクションコード>0</アクションコード>
</BIPタイプ>
<ルーティング情報>
<OrigDomain>BOSS</OrigDomain>
<RouteType>ルートタイプ</RouteType>
<ルーティング>
<ホームドメイン>XXXX</ホームドメイン>
<RouteValue>routeValue</RouteValue>
</ルーティング>
</ルーティング情報>
<トランス情報>
<セッションID>2013041017222313925676</セッションID>
<TransIDO>2013041017222313925676</TransIDO>
<TransIDOTime>20130410172223</TransIDOTime>
<トランスIDH></トランスIDH>
<TransIDHTime></TransIDHTime>
</トランス情報>
<SNリザーブ>
<TransIDC></TransIDC>
<ConvID></ConvID>
<カットオフ日></カットオフ日>
<OSN時間></OSN時間>
<OSNDUNS></OSNDUNS>
<HSNDUNS></HSNDUNS>
<メッセージ送信者></メッセージ送信者>
<メッセージ受信者></メッセージ受信者>
<優先></優先>
<サービスレベル></サービスレベル>
<SvcContType></SvcContType>
</SN予約>
<返答>
<RspType>rspType</RspType>
<Rspコード>rspコード</Rspコード>
<RspDesc>rspDesc</RspDesc>
</応答>
<SvcCont><![CDATA[<?xml version="1.0"coding="UTF-8"standalone="yes"?>
<batchSyncOrderRelationReq>
<msgTransactionID>210001BIP2B518130410172223651627</msgTransactionID>
<reqNum>2</reqNum>
<必須本文>
<oprNumb>210001BIP2B518130410172224341871</oprNumb>
<サブスクリプション情報>
<oprTime>oprTime1</oprTime>
<アクションID>アクションID1</アクションID>
<ブランド>ブランド1</ブランド>
<effTime>effTime1</effTime>
<expireTime>expireTime1</expireTime>
<feeUser_ID>feeUserId1</feeUser_ID>
<destUser_ID>destUserId1</destUser_ID>
<actionReasonID>actionId1</actionReasonID>
<servType>servType1</servType>
<subServType>subServType1</subServType>
<SPID>spId1</SPID>
<SPServID>spServId1</SPServID>
<アクセスモード>アクセスモード1</アクセスモード>
<servParamInfo>
<para_num>0</para_num>
<パラ情報>
<para_name></para_name>
<para_value></para_value>
</para_info>
</servParamInfo>
<feeType>feeType1</feeType>
</サブスクリプション情報>
</req本文>
<reqBody>
<oprNumb>210001BIP2B518130410172224420909</oprNumb>
<サブスクリプション情報>
<oprTime>oprTime2</oprTime>
<アクションID>アクションID2</アクションID>
<ブランド>ブランド2</ブランド>
<effTime>effTime2</effTime>
<expireTime>expireTime2</expireTime>
<feeUser_ID>feeUserId2</feeUser_ID>
<destUser_ID>destUserId2</destUser_ID>
<actionReasonID>actionId2</actionReasonID>
<servType>servType2</servType>
<subServType>subServType2</subServType>
<SPID>spId2</SPID>
<SPServID>spServId2</SPServID>
<アクセスモード>アクセスモード2</アクセスモード>
<servParamInfo>
<para_num>0</para_num>
<パラ情報>
<para_name></para_name>
<para_value></para_value>
</para_info>
</servParamInfo>
<feeType>feeType2</feeType>
</サブスクリプション情報>
</req本文>
</batchSyncOrderRelationReq>]]></SvcCont>
</インターボス>
デコードコードは次のとおりです。
次のようにコードをコピーします。
@XmlRootElement(name = "batchSyncOrderRelationReq")
@XmlAccessType(XmlAccessType.FIELD)
public class BatchSyncOrderRelationReq extends BossMessage<BatchSyncOrderRelationReq> {
@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);
}
}
}
@XmlAccessType(XmlAccessType.FIELD)
次のようにコードをコピーします。
パブリック クラス BatchSyncOrderRelationReqBody {
@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 = サブスクリプション情報;
}
}
@XmlAccessType(XmlAccessType.FIELD)
次のようにコードをコピーします。
パブリック クラス 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 = 料金タイプ;
}
}