<?xml version="1.0" encoding="UTF-8"?>
<wcs:GetCoverage xmlns:wcs="http://www.opengis.net/wcs/2.0"
    xmlns:gml="http://www.opengis.net/gml/3.2"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.opengis.net/wcs/2.0 ../wcsAll.xsd"
    service="WCS" version="2.0.0">
    <wcs:CoverageId>C0001</wcs:CoverageId>
</wcs:GetCoverage>


我正在尝试使用XML验证此IntelliJ IDEA文件,但是出现错误-

External resource http://www.opengis.net/gml/3.2 is not registered
Premature end of file.


我最近切换到了IntelliJ,因此同一段XMLNetBeans上可以很好地验证,架构../wcsAll.xsd在正确的位置。

到处搜索,我发现了一个建议,将"http://www.opengis.net/gml/3.2"放在忽略外部资源的列表中。但这也无济于事。

最佳答案

对于其他遇到此问题的人,您必须删除.idea隐藏文件夹中的workspace.xml!

07-27 22:21