热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

androidxml文件设置utf8,使用Android格式的utf8格式字符串来读取XML文件_android_开发99编程知识库...

我使用這裡方法與SAXparser進行分析:URLurlnewURL(urlToParse);SAXParserFactoryspfSAXParserFactory.

我使用這裡方法與SAXparser進行分析:URL url = new URL(urlToParse);

SAXParserFactory spf = SAXParserFactory.newInstance();

//here we get our SAX parser

SAXParser sp = spf.newSAXParser();

//we fuse it to a XML reader

XMLReader xr = sp.getXMLReader();

DefaultHandler handlerContact = new DefaultHandler();

//we give it a handler to manage the various events

xr.setContentHandler(handlerContact);

//and finally we open the stream to the url

InputStream oS = url.openStream();

//and parse it

xr.parse(new InputSource(new InputStreamReader(oS, Charset.forName("utf-8"))));

//to retrieve the list of contacts created by the handler

result = handlerContact.getEntries();

//don't forget to close the resource

oS.close();

我從來沒有遇到任何麻煩,只要你正在解析的初始文件被正確編碼為 UTF-8. 檢查是否為,因為當你使用電腦的默認配置時,默認值不是 UTF-8,但是ANSI或者 ISO-8859-1.



推荐阅读
author-avatar
向日葵一样2502932413
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有