首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

xml 解析-XMLDecoder 读取xml资料

2012-12-21 
xml 解析-XMLDecoder 读取xml文件XMLDecoder 使用实例:?URL url ?? ??? ?String rtnStr?? ??? ?try {

xml 解析-XMLDecoder 读取xml文件

XMLDecoder 使用实例:

?

URL url;
?? ??? ?String rtnStr="";
?? ??? ?try {
?? ??? ??? ?BufferedInputStream bis = null;
?? ??? ??? ?try {
?? ??? ??? ??? ?url = new URL(spec);
?? ??? ??? ??? ?bis = new BufferedInputStream(url.openStream(), size);
?? ??? ??? ??? ?XMLDecoder xmlDecoder = new XMLDecoder(bis);
?? ??? ??? ??? ?System.out.print("我的测试 :BufferStreamXML:"+xmlDecoder.readObject().toString());
?? ??? ??? ??? ?return xmlDecoder.readObject();
?? ??? ??? ??? ?
?? ??? ??? ?} finally {
?? ??? ??? ??? ?if (bis != null)
?? ??? ??? ??? ??? ?bis.close();
?? ??? ??? ??? ?if (out != null)
?? ??? ??? ??? ??? ?out.close();
?? ??? ??? ?}
?? ??? ?} catch (IOException e) {
?? ??? ??? ?// TODO Auto-generated catch block
?? ??? ??? ?e.printStackTrace();
?? ??? ?}

热点排行