xml语法

brgchamk  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(312)

我目前正在尝试将java库的一部分转换为c库,以便在unity中使用。在这个java库中,有些类是从xml文件生成的,我有xml文件,但因为我从来没有这样做过,无论是在java还是在c#。
我做了一些研究,找到了将.xml文件转换为.cs类的不同方法,但找不到有关.xml应该具有的语法的文档。
我尝试使用xsd.exe工具,并尝试从一个xml文件创建和创建xsd文件,但当我尝试生成.cs文件时,出现以下错误: Error: Can only generate one of classes or datasets. 然后我做了一些研究,发现了另一个工具xsd2code,所以我尝试将它与相同的.xml文件一起使用,以获得一个.cs文件,但它引发了一个错误,抱怨结构:

C:\Program Files (x86)\Xsd2Code>Xsd2Code.exe Vehicle.xml Vehicle.cs

Xsd2Code Version 3.4.0.32990
Code generation utility from XML schema files.

Error: Declaración XML inesperada. La declaración XML debe ser el primer nodo del documento y no pueden aparecer espacios en blanco delante. Línea 2, posición 3.
        SubType: Unspecified

        Rule:

我将翻译它,因为它是西班牙语的:错误:意外的xml声明。xml声明必须是第一个节点,并且之前不能包含空格。第2行,位置3。
以下是特定文件的第一行:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty" targetNamespace="http://www.w3.org/2001/XMLSchema" blockDefault="#all" elementFormDefault="qualified" version="1.0" xml:lang="EN">
<?xml version="1.0" encoding="UTF-8"?>
<traciClass>
    <name>Vehicle</name>

编辑:我纠正了它作为第一个评论说,但现在我收到

Error: Schema validation failed:
El elemento 'traciClass' no es compatible en este contexto.
        SubType: Unspecified

        Rule:

The element traciClass is not compatible in this context.

原帖子继续:
这是一个模板,说明了在xml for java中应该如何定义不同的对象,但是我想知道对于c#,这种结构是否会有所不同。

<?xml version="1.0" encoding="UTF-8"?>
<!-- This file is used to generate a Java class with the same name for a 
    TraCI object. This saves manually writing a lot of boilerplate code. -->
<traciClass>
    <!-- The name of the object. It will be used as the class name. First letter 
        is capital. Must be equal to this document's file name. -->
    <name>ExampleTraciObject</name>

    <!-- The javadoc of the class that will be generated. -->
    <javadoc>
    Put your object description here.
    </javadoc>

    <!-- Lists all the other repositories that are needed by the queries -->
    <repos>
        <repo>Repository1</repo>
        <repo>Repository2</repo>
    </repos>

    <command>it.polito.appeal.traci.protocol.Constants.CMD_GET_VEHICLE_VARIABLE</command>

    <!-- List of all "read" queries, i.e. those that don't change the state 
        of the object and return a value -->
    <readQueries>

        <readQuery>

            <!-- The name of the query. If the name is XXX, the Java class will contain 
                a method named queryXXX() -->
            <name>ReadSomeValueQuery</name>

            <!-- The enum name of the query. It will appear as an enum entry
            in the inner Variable enum, and can be used with the getReadQuery() method -->
            <enum>SOME_VALUE</enum>

            <!-- A numeric value or a constant of type int that tells the variable 
                ID -->
            <const>it.polito.appeal.traci.protocol.Constants.SOME_VARIABLE</const>

            <!-- The Java class name that can make the query. It must be a subclass 
                of ReadObjectVarQuery. If the class is on the package
                it.polito.appeal.traci, the package name can be omitted-->
            <query>ReadObjectVarQuery.IntegerQ</query>

            <!-- The return type of the query. It must be the same type (or a supertype) 
                of the type parameter V specified in the above class. 
                Leave it empty to use the query class as the return type. -->
            <returnType>java.lang.Integer</returnType>

            <!-- If true, it means that this value may change at every simulation 
                step. -->
            <dynamic>true</dynamic>
        </readQuery>

        <!-- add other read queries here -->
    </readQueries>

    <!-- List of all "change state" queries, i.e. those that change the state 
        of the object and don't return a value -->
    <changeStateQueries>

        <!-- The syntax of a changeStateQuery is similar to readQuery, differences 
            are listed below. -->
        <changeStateQuery>
            <name>DoSomething</name>
            <query>DoSomethingQuery</query>
            <!-- Lists the read queries that may be changed by the execution of this 
            query, identified by their name. Calling this query will clear the caches 
            of the queries contained here. -->
            <affects>
                <affect>ReadSomeValueQuery</affect>
            </affects>
        </changeStateQuery>

        <!-- add other change state queries here -->

    </changeStateQueries>

</traciClass>

这是xml语法的问题吗?

kpbpu008

kpbpu0081#

xsd.exe 以及 xsd2Code 可用于从xml模式生成c类(通常带有扩展名.xsd,因此是工具名)。它们不会直接从示例xml示例生成类。
根据 xsd.exe 文档,您可以使用它从xml示例推断模式。然后你可以从中生成类。

xsd.exe instance.xml
xsd.exe instance.xsd /classes

VisualStudio还可以帮助您:将xml复制到剪贴板并单击 Edit | Paste Special | Paste XML as Classes .

相关问题