博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习笔记之XML
阅读量:6947 次
发布时间:2019-06-27

本文共 1038 字,大约阅读时间需要 3 分钟。

什么是QName - Benjieming_Wang的专栏 - CSDN博客

  • http://blog.csdn.net/Benjieming_Wang/article/details/5959961

 

An invalid XML character (Unicode: 0x1a) was found in the element content of the document

The processing instruction target matching "[xX][mM][lL]" is not allowed

At the very beginning of the first line, look for and delete any leading spaces.
The following first line of the xml must not have any spaces or characters before the first "<" in the line.
<?xml version="1.0" encoding="UTF-8"?>

The namespace prefix "ipo" was not declared.

prefix not bound to a namespace

1
<?
xml version="1.0"
?>
2
<
warehouse
>
3
<
purchaseOrder
xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
orderDate
="1999-12-01"
>
4
<
shipTo
exportCode
="1"
xsi:type
="UKAddress"
>
5
<
name
>
Helen Zoey
</
name
>
6
</
shipTo
>
7
<
items
>
8
<
productName
>
Lapis necklace
</
productName
>
9
<
ipo:comment
>
Want this for the holidays!
</
ipo:comment
>
10
</
item
>
 
12
</
purchaseOrder
>
13
</
warehouse
>

转载于:https://www.cnblogs.com/pegasus923/p/1998574.html

你可能感兴趣的文章
filter中的DelegatingFilterProxy使用事例
查看>>
WinForm 天猫2013双11自动抢红包【源码下载】
查看>>
学习数学从《数学之美》开始
查看>>
flashcache的实现与分析
查看>>
[UML]UML系列——状态机图statechart diagram
查看>>
微信公众平台开发(74) 用户分组管理
查看>>
二、jdk命令之javah命令(C Header and Stub File Generator)
查看>>
ios模拟器未能安装此应用程序
查看>>
站长常用的200个js代码 站长常用js代码大全 站长常用js代码集合
查看>>
HBase eclipse开发环境搭建
查看>>
SQL Server - 把星期一(周一)当作每个星期的开始在一年中求取周数
查看>>
【ASP.NET Web API教程】6.2 ASP.NET Web API中的JSON和XML序列化
查看>>
jquery-alert对话框
查看>>
WIN8系统安装软件时提示"扩展属性不一致"的解决方法
查看>>
sqlite3.exe 使用
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
CAD中批量打印
查看>>
蛋疼的Apple IOS Push通知协议
查看>>
MyEclipse10.0 安装 jbpm4.4
查看>>
批处理复制文件(文件夹)排除某目录,某些类型(草稿)
查看>>