iteye_3692 2010-06-30 15:39
浏览 401
已采纳

在使用StAX中,XMLStreamWriter.writeStartDocument()遇到的一个问题,求教!

最近在使用StAX的时候,看了很多资料,
XMLStreamWriter.writeStartDocument()有很多重载:
void writeStartDocument()
void writeStartDocument(String version)
void writeStartDocument(String encoding, String version)

在使用最后一个的时候就有问题了,
如果指定encoding,就可能会报错:
Exception in thread "main" javax.xml.stream.XMLStreamException: Underlying stream encoding 'GBK' and input paramter for writeStartDocument() method 'ISO-8859-1' do not match.

查找之后发现这个是与底层流编码不匹配的问题造成的。

StAX是一套接口,我现在所用的是JDK1.6_20里面的实现。
之前在工作里用的 bea 实现的就没有遇到过该问题。
请问有人遇到过这种问题么?
如果使用JDK1.6应该如何处理底层流编码呢?
附上源代码
[code="java"]
package com.yy.xml.stax.test;

import java.io.OutputStream;

import javax.xml.stream.XMLOutputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamWriter;

public class StAXTest {
public static void main(String[] args) throws XMLStreamException {
String ENCODING = "ISO-8859-1";
// Create an output factory
XMLOutputFactory xmlof = XMLOutputFactory.newInstance();
// Create an XML stream writer
XMLStreamWriter xmlw = xmlof.createXMLStreamWriter(System.out);
// Write XML prologue
//xmlw.writeStartDocument();
xmlw.writeStartDocument(ENCODING, "1.0");
}
}
[/code]

  • 写回答

1条回答 默认 最新

  • myali88 2010-06-30 16:57
    关注

    [quote]
    Write the XML Declaration. Note that the encoding parameter does not set the actual encoding of the underlying output. [b]That must be set when the instance of the XMLStreamWriter is created using the XMLOutputFactory[/b]
    [/quote]
    writeStartDocument方法里说的明白,你采用下面的方式试试:
    [code="java"]
    String ENCODING = "ISO-8859-1";

    // Create an output factory

    XMLOutputFactory xmlof = XMLOutputFactory.newInstance();

    // Create an XML stream writer

    XMLStreamWriter xmlw = xmlof.createXMLStreamWriter(System.out , ENCODING);

    // Write XML prologue

    //xmlw.writeStartDocument();

    xmlw.writeStartDocument(ENCODING, "1.0");

    [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 Acess连接SQL 数据库后 不能用中文筛选
  • ¥15 用友U9Cloud的webapi
  • ¥20 电脑拓展屏桌面被莫名遮挡
  • ¥20 ensp,用局域网解决
  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败
  • ¥150 计算DC/DC变换器平均模型中的参数mu