- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.ctc.wstx.io.WstxInputData.findIllegalNameChar()
方法的一些代码示例,展示了WstxInputData.findIllegalNameChar()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WstxInputData.findIllegalNameChar()
方法的具体详情如下:
包路径:com.ctc.wstx.io.WstxInputData
类名称:WstxInputData
方法名:findIllegalNameChar
[英]Method that can be called to check whether given String contains any characters that are not legal XML names.
[中]方法,可以调用该方法来检查给定字符串是否包含任何非合法XML名称的字符。
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl
/**
* Method called to verify validity of the parsed QName element
* or attribute value. At this point binding of a prefixed name
* (if qname has a prefix) has been verified, and thereby prefix
* also must be valid (since there must have been a preceding
* declaration). But local name might still not be a legal
* well-formed xml name, so let's verify that.
*/
protected QName _verifyQName(QName n)
throws TypedXMLStreamException
{
String ln = n.getLocalPart();
int ix = WstxInputData.findIllegalNameChar(ln, mCfgNsEnabled, mXml11);
if (ix >= 0) {
String prefix = n.getPrefix();
String pname = (prefix != null && prefix.length() > 0) ?
(prefix + ":" +ln) : ln;
throw _constructTypeException("Invalid local name \""+ln+"\" (character at #"+ix+" is invalid)", pname);
}
return n;
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLStreamException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-asl
int illegalIx = WstxInputData.findIllegalNameChar(token, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
代码示例来源:origin: com.fasterxml.woodstox/woodstox-core
/**
* Method called to verify validity of the parsed QName element
* or attribute value. At this point binding of a prefixed name
* (if qname has a prefix) has been verified, and thereby prefix
* also must be valid (since there must have been a preceding
* declaration). But local name might still not be a legal
* well-formed xml name, so let's verify that.
*/
protected QName _verifyQName(QName n)
throws TypedXMLStreamException
{
String ln = n.getLocalPart();
int ix = WstxInputData.findIllegalNameChar(ln, mCfgNsEnabled, mXml11);
if (ix >= 0) {
String prefix = n.getPrefix();
String pname = (prefix != null && prefix.length() > 0) ?
(prefix + ":" +ln) : ln;
throw _constructTypeException("Invalid local name \""+ln+"\" (character at #"+ix+" is invalid)", pname);
}
return n;
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl
/**
* Method called to verify validity of the parsed QName element
* or attribute value. At this point binding of a prefixed name
* (if qname has a prefix) has been verified, and thereby prefix
* also must be valid (since there must have been a preceding
* declaration). But local name might still not be a legal
* well-formed xml name, so let's verify that.
*/
protected QName _verifyQName(QName n)
throws TypedXMLStreamException
{
String ln = n.getLocalPart();
int ix = WstxInputData.findIllegalNameChar(ln, mCfgNsEnabled, mXml11);
if (ix >= 0) {
String prefix = n.getPrefix();
String pname = (prefix != null && prefix.length() > 0) ?
(prefix + ":" +ln) : ln;
throw _constructTypeException("Invalid local name \""+ln+"\" (character at #"+ix+" is invalid)", pname);
}
return n;
}
代码示例来源:origin: Nextdoor/bender
/**
* Method called to verify validity of the parsed QName element
* or attribute value. At this point binding of a prefixed name
* (if qname has a prefix) has been verified, and thereby prefix
* also must be valid (since there must have been a preceding
* declaration). But local name might still not be a legal
* well-formed xml name, so let's verify that.
*/
protected QName _verifyQName(QName n)
throws TypedXMLStreamException
{
String ln = n.getLocalPart();
int ix = WstxInputData.findIllegalNameChar(ln, mCfgNsEnabled, mXml11);
if (ix >= 0) {
String prefix = n.getPrefix();
String pname = (prefix != null && prefix.length() > 0) ?
(prefix + ":" +ln) : ln;
throw _constructTypeException("Invalid local name \""+ln+"\" (character at #"+ix+" is invalid)", pname);
}
return n;
}
代码示例来源:origin: FasterXML/woodstox
/**
* Method called to verify validity of the parsed QName element
* or attribute value. At this point binding of a prefixed name
* (if qname has a prefix) has been verified, and thereby prefix
* also must be valid (since there must have been a preceding
* declaration). But local name might still not be a legal
* well-formed xml name, so let's verify that.
*/
protected QName _verifyQName(QName n)
throws TypedXMLStreamException
{
String ln = n.getLocalPart();
int ix = WstxInputData.findIllegalNameChar(ln, mCfgNsEnabled, mXml11);
if (ix >= 0) {
String prefix = n.getPrefix();
String pname = (prefix != null && prefix.length() > 0) ?
(prefix + ":" +ln) : ln;
throw _constructTypeException("Invalid local name \""+ln+"\" (character at #"+ix+" is invalid)", pname);
}
return n;
}
代码示例来源:origin: FasterXML/woodstox
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: woodstox/wstx-asl
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: Nextdoor/bender
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: woodstox/wstx-asl
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLValidationException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
代码示例来源:origin: org.codehaus.woodstox/woodstox-core-lgpl
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLStreamException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
代码示例来源:origin: com.fasterxml.woodstox/woodstox-core
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLStreamException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
代码示例来源:origin: com.fasterxml.woodstox/woodstox-core
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.woodstox
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLValidationException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.woodstox
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: woodstox/wstx-lgpl
/**
* Method called to verify that the name is a legal XML name.
*/
public final void verifyNameValidity(String name, boolean checkNs)
throws XMLStreamException
{
/* No empty names... caller must have dealt with optional arguments
* prior to calling this method
*/
if (name == null || name.length() == 0) {
reportNwfName(ErrorConsts.WERR_NAME_EMPTY);
}
int illegalIx = WstxInputData.findIllegalNameChar(name, checkNs, mXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_FIRST_CHAR,
WstxInputData.getCharDesc(name.charAt(0)));
}
reportNwfName(ErrorConsts.WERR_NAME_ILLEGAL_CHAR,
WstxInputData.getCharDesc(name.charAt(illegalIx)));
}
}
代码示例来源:origin: woodstox/wstx-lgpl
protected String validateDefaultName(InputProblemReporter rep, boolean normalize)
throws XMLValidationException
{
String origDefValue = mDefValue.getValue();
String defValue = origDefValue.trim();
if (defValue.length() == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue
+"'; empty String is not a valid name");
}
// Ok, needs to be a valid XML name:
int illegalIx = WstxInputData.findIllegalNameChar(defValue, mCfgNsAware, mCfgXml11);
if (illegalIx >= 0) {
if (illegalIx == 0) {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character "
+WstxInputData.getCharDesc(defValue.charAt(0))
+") not valid first character of a name");
} else {
reportValidationProblem(rep, "Invalid default value '"+defValue+"'; character #"+illegalIx+" ("
+WstxInputData.getCharDesc(defValue.charAt(illegalIx))
+") not valid name character");
}
}
// Ok, cool it's ok...
return normalize ? defValue : origDefValue;
}
我正在使用 Aspose.Cells(试用版)为 Java 解析 .xls (Excel) 文件。但是当我尝试加载文件时,它抛出了下面给出的异常: SEVERE: java.lang.IllegalS
本文整理了Java中com.ctc.wstx.exc.WstxException类的一些代码示例,展示了WstxException类的具体用法。这些代码示例主要来源于Github/Stackoverf
本文整理了Java中com.ctc.wstx.util.XmlChars类的一些代码示例,展示了XmlChars类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven
本文整理了Java中com.ctc.wstx.sw.XmlWriterWrapper类的一些代码示例,展示了XmlWriterWrapper类的具体用法。这些代码示例主要来源于Github/Stack
本文整理了Java中com.ctc.wstx.sw.XmlWriter类的一些代码示例,展示了XmlWriter类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven
本文整理了Java中com.ctc.wstx.util.WordResolver类的一些代码示例,展示了WordResolver类的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中com.ctc.wstx.sax.WstxSAXParser类的一些代码示例,展示了WstxSAXParser类的具体用法。这些代码示例主要来源于Github/Stackoverf
本文整理了Java中com.ctc.wstx.sax.WrappedSaxException类的一些代码示例,展示了WrappedSaxException类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中com.ctc.wstx.evt.WEntityReference类的一些代码示例,展示了WEntityReference类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中com.ctc.wstx.io.WstxInputData类的一些代码示例,展示了WstxInputData类的具体用法。这些代码示例主要来源于Github/Stackoverfl
本文整理了Java中com.ctc.wstx.api.WriterConfig类的一些代码示例,展示了WriterConfig类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中com.ctc.wstx.evt.WstxEventReader类的一些代码示例,展示了WstxEventReader类的具体用法。这些代码示例主要来源于Github/Stacko
本文整理了Java中com.ctc.wstx.evt.WNotationDeclaration类的一些代码示例,展示了WNotationDeclaration类的具体用法。这些代码示例主要来源于Git
本文整理了Java中com.ctc.wstx.evt.WEntityDeclaration类的一些代码示例,展示了WEntityDeclaration类的具体用法。这些代码示例主要来源于Github/
本文整理了Java中com.ctc.wstx.evt.WDTD类的一些代码示例,展示了WDTD类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精
本文整理了Java中com.ctc.wstx.exc.WstxException.getMessage()方法的一些代码示例,展示了WstxException.getMessage()的具体用法。这些
本文整理了Java中com.ctc.wstx.exc.WstxException.getLocation()方法的一些代码示例,展示了WstxException.getLocation()的具体用法。
本文整理了Java中com.ctc.wstx.exc.WstxException.()方法的一些代码示例,展示了WstxException.()的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中com.ctc.wstx.exc.WstxException.getLocationDesc()方法的一些代码示例,展示了WstxException.getLocationDesc
本文整理了Java中com.ctc.wstx.sw.XmlWriterWrapper.wrapWriteCharacters()方法的一些代码示例,展示了XmlWriterWrapper.wrapWr
我是一名优秀的程序员,十分优秀!