我使用从 xsd 模式生成的 DataSource。我需要从 DataSource 中获取所有字段,包括嵌套字段。我的问题与Smartclient forum forum 的这个主题相同,当我使用DataSource.getFields()
它只返回第一级字段时。
有谁知道我怎样才能获得嵌套字段?
我使用从 xsd 模式生成的 DataSource。我需要从 DataSource 中获取所有字段,包括嵌套字段。我的问题与Smartclient forum forum 的这个主题相同,当我使用DataSource.getFields()
它只返回第一级字段时。
有谁知道我怎样才能获得嵌套字段?
我不确定这是否会解决您的问题。CompanySlaves
不是 xsd 中任何地方的引用。类型已定义但未使用。
我认为你需要有<xsd:element name="SomeElementName" type="tns:CompanySlaves"></xsd:element> in your xsd definition
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://xml.netbeans.org/schema/newXmlSchema"
xmlns:tns="http://xml.netbeans.org/schema/newXmlSchema"
elementFormDefault="qualified">
<xsd:element name="SubrogationClaim" type="tns:SubrogationClame"></xsd:element>
<xsd:complexType name="SubrogationClame">
<xsd:sequence>
<xsd:element name="CompanyName" type="xsd:string"></xsd:element>
<xsd:element name="CompanyPlace" type="xsd:string"></xsd:element>
<xsd:element name="CompanyEmploee" type="tns:SubrogationClame"></xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CompanySlaves">
<xsd:sequence>
<xsd:element name="EmploeeName" type="xsd:string"></xsd:element>
<xsd:element name="EmploeeSalary" type="xsd:string"></xsd:element>
</xsd:sequence>
</xsd:ComplexType>
</xsd:schema>
我找到了解决方案。要获取嵌套字段,可以使用 DataSource.getDataSource(ID)。例如,如果 dataSource 是主 DataSource,则可以这样做:
private List<DataSourceField> getAllFields(DataSource dataSource)
{
List <DataSourceField> fieldList = new ArrayList<DataSourceField>();
DataSourceField [] fields = dataSource.getFields();
fieldList.addAll(Arrays.asList(fields));
for (DataSourceField field : fields);
{
String fieldName = field.getName();
DataSource ds = DataSource.getDataSource(fieldName);
if (ds != null)
{
fieldList.remove(field);
DataSourceField[] nFields = ds.getFields();
fieldList.addAll(Arrays.asList(nFields));
getAllFields(ds);
}
}
return fieldList;
}