JDBC ResultSet オブジェクトで Cursor を取得しています。ResultSet を使用して複雑な XML ドキュメント オブジェクトを作成する必要があります。現在、私は手続き型の方法で文書オブジェクトを構築しています。
現在、xml ドキュメント構築ロジックを簡素化するオブジェクト指向の方法があり、将来の変更にも対応できます。
私はxml文書の次の構造を持っています、
<Response>
<BillingInformation>
<BillingID>
<Identifier>
</Identifier>
</BillingID>
<BillInfo>
<ID>
<Identifier>
</Identifier>
</ID>
<BillingCustomerName>
</BillingCustomerName>
<AlternateID>
<Identifier>
</Identifier>
<Type>
</Type>
</AlternateID>
<PostalAddress>
<ID>
<Identifier>
</Identifier>
<Type>
</Type>
</ID>
<StreetAddress>
<AddressContent>
</AddressContent>
<AddressContent>
</AddressContent>
</StreetAddress>
<City>
</City>
<State>
</State>
<Country>
</Country>
<Zip>
</Zip>
<Status>
</Status>
</PostalAddress>
<Contact>
<ContactId>
<Identifier>
</Identifier>
<Type>
</Type>
</ContactId>
<AlternateContactId>
<Identifier>
</Identifier>
<Type>
</Type>
</AlternateContactId>
<ContactName>
<FirstLastName>
<FirstName>
</FirstName>
<LastName>
</LastName>
</FirstLastName>
</ContactName>
</Contact>
<Status>
</Status>
</BillInfo>
</BillingInformation>
</Response>
どんな助けでも大歓迎です。