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();
?? ??? ?}