0

サーバーから xml ファイルを解析する必要があります。DOm パーサーと Sax パーサーを試してみましたが、html タグを解析できず、最初の「<」が見つかったときに停止します。

これは私のパーサークラスです:

public class XMLParser {

    // constructor
    public XMLParser() {

    }


    public String getXmlFromUrl(String url) {
        String xml = null;
        BufferedReader in = null;

        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            in =  new BufferedReader(new InputStreamReader(
                    httpResponse.getEntity().getContent(), "UTF-8"));


            StringBuffer sb=new StringBuffer("");
             String line = "";
             String NL = System.getProperty("line.separator");

             while ((line = in.readLine()) != null)
                {
                    sb.append(line );
                    sb.append(NL );
                    line=in.readLine();
                }
             in.close();

            xml = sb.toString();;

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        // return XML
        return xml;
    }

    public Document getDomElement(String xml){
        Document doc = null;
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        try {

            DocumentBuilder db = dbf.newDocumentBuilder();

            InputSource is = new InputSource();
                is.setCharacterStream(new StringReader(xml));
                doc = db.parse(is); 

            } catch (ParserConfigurationException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            } catch (SAXException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            } catch (IOException e) {
                Log.e("Error: ", e.getMessage());
                return null;
            }

            return doc;
    }


     public final String getElementValue( Node elem ) {
         Node child;
         if( elem != null){
             if (elem.hasChildNodes()){
                 for( child = elem.getFirstChild(); child != null; child = child.getNextSibling() ){
                     if( child.getNodeType() == Node.TEXT_NODE  ){
                         return child.getNodeValue();
                     }
                 }
             }
         }
         return "";
     }

     /**
      * Getting node value
      * @param Element node
      * @param key string
      * */
     public String getValue(Element item, String str) {     
            NodeList n = item.getElementsByTagName(str);        
        return this.getElementValue(n.item(0));
    }

  }
4

2 に答える 2

0

HTML が整形式でない場合 (たとえば、閉じていないタグが含まれている場合)、これらのパーサーはどちらも機能しません。手で解析しなければならない場合があります (正規表現とPatternクラスを使用するなど)。HTML が整形式である場合は、受け取ったエラーとそのページへのリンクを投稿する必要があります。

于 2012-05-19T16:14:05.120 に答える
0

Web で利用可能なほとんどの html コンテンツは XML 仕様に準拠していないため、HTML パーサーを使用する必要があります。単純なケースでは正規表現で十分ですが、複雑なケースでは HTML パーサーが必要になる場合があります。

于 2012-05-19T16:25:29.817 に答える