我有数十个X3D文件,我的目标是使用XML解析器将它们放入Java应用程序。但是,我知道这听起来很愚蠢,但是如何将.x3d文件转换为.xml文件? .x3d文件是由一位朋友提供给我的,目的是制作3D模型查看器。我已经做了一些研究,但是我不知道以下代码在将X3D加载到XML中是否正确。

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D 3.0//EN"
  "http://www.web3d.org/specifications/x3d-3.0.dtd">

<X3D profile="IMMERSIVE"
xmlns:xsd="http://www.w3.org/2001/XMLSchema-instance"
xsd:noNamespaceSchemaLocation="http://www.web3d.org/specifications/x3d-   3.0.xsd">
    <head>
        <meta name='filename' content='RedSphereBlueBox.x3d'/>
    </head>
        <Scene>
            <Transform>
                <NavigationInfo headlight='false'
         avatarSize='0.25 1.6 0.75' type='EXAMINE'/>
                <DirectionalLight/>
                <Transform translation='3.0 0.0 1.0'>
                    <Shape>
                        <Sphere radius='2.3'/>
                        <Appearance>
                            <Material diffuseColor='1.0 0.0 0.0'/>
                        </Appearance>
                    </Shape>
                </Transform>
                <Transform translation='-2.4 0.2 1.0' rotation='0.0 0.707 0.707 0.9'>
                <Shape>
                    <Box/>
                    <Appearance>
                        <Material diffuseColor='0.0 0.0 1.0'/>
                    </Appearance>
                </Shape>
            </Transform>
        </Transform>
    </Scene>
</X3D>

最佳答案

您也可以将.x3d文件重命名为.xml,如果这样可以帮助本机XML工具处理该文件。

X3D示例档案库还以Canonical XML格式提供每个场景的副本,该格式支持XML XML签名(身份验证)和XML加密(隐私)的XML安全工具的应用。有关这些主题的更多信息,请访问


http://www.web3d.org/x3d/content/examples/X3dResources.html#Examples
查看源:http://www.web3d.org/x3d/content/examples/HelloWorldCanonical.xml
http://www.web3d.org/documents/specifications/19776-3/V3.3/Part03/concepts.html#X3DCanonicalForm
http://www.web3d.org/x3d/content/examples/X3dResources.html#Security

10-06 14:04