`
zhangcheng
  • 浏览: 119923 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Google App Engine first error :SAXException

    博客分类:
  • Java
阅读更多
    今天照着Google App Engine的官方文档,试了试GuestBook,从开始知道部署前都很顺利,没问题!但是部署的时候却出了问题。
Deploying guestbook to Google". 
Received SAXException parsing the input stream for C:/workspace/ 
JavaAppOnGoogle/guestbook/war\WEB-INF/datastore-indexes.xml 

    很郁闷,问题出在哪里呢?看了一下那个文件的内容
<!-- Indices written at 09-5-6 ����8:01 -->

<datastore-indexes/>

    看不出来什么问题,尝试在/之前加个空格,如下
<!-- Indices written at 09-5-6 ����8:01 -->

<datastore-indexes />

    具然好了。啊哈哈~
分享到:
评论
2 楼 zhangcheng 2009-05-17  
superhack 写道

我只想说,你真的很帅,这个bug都能发现!

这都是侥幸啊
1 楼 superhack 2009-05-13  
我只想说,你真的很帅,这个bug都能发现!

相关推荐

    org.xml.sax.SAXException: Invalid element

    NULL 博文链接:https://wilian.iteye.com/blog/1992365

    soap消息解析.rar

    SOAP(Simple Object Access Protocol)是一种基于XML的协议,用于在Web服务中交换结构化和类型化的信息。SOAP消息解析是理解、处理和构建SOAP请求和响应的关键步骤。在这个"soap消息解析.rar"压缩包中,包含的是...

    Java四种操作XML语言入门案例

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if (qName.equalsIgnoreCase("firstname")) { bFirstName = true; } else if (qName....

    java解析xml的4种经典方法

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if (qName.equalsIgnoreCase("firstname")) { bFirstName = true; } else if (qName....

    java读取xml里面带两个例子

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if ("firstname".equals(qName)) { isFirstName = true; } else if ("lastname".equals...

    JAVA的XML解析的四种方法

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if ("firstname".equals(qName)) { isFirstName = true; } else if ("lastname".equals...

    java中解析xml

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { System.out.println("Start Element :" + qName); } @Override public void ...

    使用JAXP处理XML文件.pdf

    - **DefaultHandler**:作为`ContentHandler`, `ErrorHandler`, `DTDHandler`, 和`EntityResolver`接口的默认实现,提供了基础的行为,开发者可以根据需求覆盖其中的方法以实现自定义逻辑。 - **ContentHandler**:...

    sax解析xml

    public void fatalError(SAXParseException exception) throws SAXException { // 处理致命错误... } }); ``` 通过以上步骤,我们就能使用SAX解析XML文档了。这种解析方式适用于处理大文件,因为它不会一次性...

    java读取xml文件

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    Java解析XML的四种方法 有代码详解哦

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { currentElement = qName; // 处理元素开始 } @Override public void characters(char...

    java读xml,java操作xml文件

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if ("staff".equals(qName)) { System.out.println("Detected staff element with id: " ...

    XML.rar_java xml_xml_解析xml

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    读取XML文件

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    张龙 sax解析课堂笔记

    - **ErrorHandler:**处理解析过程中发生的错误。 - **DTDHandler:**处理与DTD相关的事件。 - **EntityResolver:**处理实体解析。 #### 三、SAX 解析器分类 根据功能的不同,SAX解析器可以分为几类: - **带...

    java解析xml实例

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    java操作xml

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if ("staff".equals(qName)) { String id = attributes.getValue("id"); System.out....

    java 读取XML

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    java四种xml读写demo

    System.out.println("First Name : " + eElement.getElementsByTagName("firstname").item(0).getTextContent()); System.out.println("Last Name : " + eElement.getElementsByTagName("lastname").item(0)....

    java读写xml的代码

    public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { if ("firstname".equals(qName)) { isFirstName = true; } else if ("lastname".equals...

Global site tag (gtag.js) - Google Analytics