- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SAX API 来解析 xml 文档,但很难从 XML 中的每个位置存储元素 PCDATA。
Oracle 文档 SAX API显示字符()用于从元素解析 PCDATA,但我不确定应该如何调用它。
在我当前的实现中, boolean 标志用于在遇到 XML 文档中的某个元素时发出信号。当遇到元素时,这些标志将在 startElement()
中触发。
我在 charaters()
中的 boolean 变量 description
上设置了断点,但 boolean 值直到 startElement()
才设置为 true被调用,意味着 PCDATA 永远不会被解析。
我的问题是在 startElement()
中设置 boolean 值后如何调用characters()?
这是在 charaters()
之后调用的 startElement()
:
public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
if (qName.equals("location")){
location = true;
System.out.println("Found a location...");
try {
//Read in the values for the attributes of the element <location>
int locationID = Integer.parseInt(atts.getValue("id"));
String locationName = atts.getValue("name");
//Generate a new instance of Location on-the-fly using reflection. The statement Class.forName("gmit.Location").newInstance(); invokes the
//Java Class Loader and the calls the null (default) constructor of Location.
Location loc = (Location) Class.forName("gmit.Location").newInstance();
loc.setId(locationID); //Now configure the Location object with an ID, Name, Description etc...
loc.setName(locationName);
loc.setDescription(locationDescription);
} catch (Exception e) {
e.printStackTrace();
}
}else if (qName.equals("description")){
description = true;
//need to invoke the charaters method here after the description
//flag is set to true
System.out.println("Found a description. You should tie this to the last location you encountered...");
}
charaters()
会在程序启动时立即调用,但需要在上述方法中设置 boolean 标志后调用:
public void characters(char[] ch,int start, int length) throws SAXException{
if (location){
}else if (description){
locationDescription = new String( ch, start, length);
System.out.println("Description = " + locationDescription);
}
XML 文件中的位置之一的示例:
<location id="1" name="Tiberius">
<description>
You are in the city of Tiberius. You see a long street with high buildings and a castle.You see an exit to the south.
</description>
<exit title="Desert" direction="S"/>
</location>
最佳答案
how can I call the characters() after the boolean values are set in startElement() ?
你不能。 SAX 解析的重点是解析器调用您的处理程序,而不是您调用解析器。
每次 SAX 解析器在文档中遇到字符数据时,都会调用您的 characters
方法。您的处理程序将需要确定此数据是否相关(是位置、描述还是可以忽略的内容?),如果相关,则将此数据存储在以后可以检索的地方。
您已经向我们展示了您正在使用的 startElement
方法。如果您还没有这样做,您还需要重写 endElement
。您需要在 endElement
方法中将 boolean 值 location
和 description
设置为 false
,以便您的 SAX 处理程序知道它不再位于适当的 location
或 description
元素内。
您还没有向我们展示示例 XML 文档。也许你有这样的事情:
<widgetList>
<widget>
<name>First widget</name>
<location>Over there</location>
<description>This is the first widget in the list</description>
</widget>
<widget>
<name>Second widget</name>
<location>Very far away</location>
<description>This is the second widget in the list</description>
</widget>
</widgetList>
如果是这样,您可能还想处理 widget
元素的结尾。例如,这可以获取处理程序遇到的最后一个位置和描述,将它们放在一个 Widget
对象中,并将其存储在处理程序内的某个列表中。在解析结束时,您可以从处理程序中读取小部件列表。
关于java - 使用 SAX 字符方法从 XML 元素解析 PCDATA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29323687/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
为什么在 C# 中添加两个 char 结果是 int 类型? 例如,当我这样做时: var pr = 'R' + 'G' + 'B' + 'Y' + 'P'; pr 变量变为 int 类型。我希望它是
下面的代码可以编译,但 char 类型的行为与 int 类型的行为不同。 特别是 cout ::ikIsX >() ::ikIsX >() ::ikIsX >() using names
我正在寻找一个正则表达式,它可以匹配长度为 1 个或多个字符但不匹配 500 的内容。这将在 Rails 路由文件中使用,特别是用于处理异常。 路线.rb match '/500', to: 'err
对于 C 编程作业,我正在尝试编写几个头文件来检查所谓的“X 编程语言”的语法。我最近才开始,正在编写第一个头文件。这是我编写的代码: #ifndef _DeclarationsChecker_h_
为什么扩展的 ascii 字符(â、é 等)被替换为 字符? 我附上了一张图片...但我正在使用 PHP 从 MySQL 中提取数据,其中一些位置有扩展字符...我使用的是 Arial 字体。 您可以
我有一个与 R 中的断线相关的简单问题。 我正在尝试粘贴,但在获取(字符/数字)之间的断线时遇到问题。请注意,这些值包含在向量中(V1=81,V2=55,V3=25)我已经尝试过这段代码: cat(p
如何将 ANSI 字符 (char) 转换为 Unicode 字符 (wchar_t),反之亦然? 是否有用于此目的的任何跨平台源代码? 最佳答案 是的,在 中你有mbstowcs()和 wcsto
函数 fromCharCode 不适用于国际 ANSI 字符。例如,对于 ID 为 192 到 223 的俄语 ANSI (cp-1251) 字符,它返回特殊字符。如何解决这个问题? 我认为,需要将A
如果不喜欢,我想隐藏 id,但不起作用 SELECT * FROM character, character_actor WHERE character.id NOT LIKE character_a
现在这个程序成功地反转了键盘输入的单词。但是我想在我反转它之前“保存”指针中的单词,所以我可以比较两者,反转的和“原始的”,并检查它们是否是回文。我还没有太多经验,可能会出现比我知道的更多的错误,但我
Memcpy 和 memcmp 函数可以接受指针变量吗? char *p; char* q; memcpy(p,q,10); //will this work? memcmp(p,q,10); //w
恐怕我对一个相当过饱和的主题的细节有疑问,我搜索了很多,但找不到一个明确的答案来解决这个特定的明显-imho-重要的问题: 使用UTF-8将byte[]转换为String时,每个字节(8bit)都变成
我有一个奇怪的问题。我需要从 stat 命令打印输出字符串。 我已经编写了获取一些信息的代码。 import glob import os for file in glob.glob('system1
我正在使用 Java 并具有其值如下所示的字符串, String data = "vale-cx"; data = data.replaceAll("\\-", "\\-\\"); 我正在替换其中的“
String urlParameters = "login=test&password=te&ff"; 我有一个String urlParams,& - 是密码的一部分,如何使其转义,从而不被识别为分
大家好,我只想从此字符串中提取第一个字母: String str = "使 徒 行 傳 16:31 ERV-ZH"; 我只想获取这些字符: 使 徒 行 傳 并且不包括 ERV-ZH 仅数
这个问题已经有答案了: Crash or "segmentation fault" when data is copied/scanned/read to an uninitialized point
所以, 我有一个字符**;它本质上是一个句子,带有指向该句子中每个单词的指针;即 'h''i''\0''w''o''r''l''d''\0''y''a''y''!''\0' 在这种情况下,我希望使用可
这个问题在这里已经有了答案: Using quotation marks inside quotation marks (12 个答案) 关闭 7 年前。 如何打印 " 字符? 我知道打印 % 符号
我是一名优秀的程序员,十分优秀!