Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
282 views
in Technique[技术] by (71.8m points)

android - parsing xml via SAXParser contain html tag

I have parse data from xml that contain html tag. i am not able to get image src attribute can any one show this link. http://mobileecommerce.site247365.com/admin/catdata.xml i give you url it's not mean that i want to show whole code from you.i mean give some links or some idea for that.

Thanks in advance

Arpit

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
    String str = "Your Cat_Desc tag value";
    String[] temp;

        if (str.contains("<img src=")) {
                                temp = str.split("<img src=");
                                String imagesUrl = temp[1].substring(
                                temp[1].indexOf("""), temp[1]
                                                .indexOf(" "));
                                imagesUrl = imagesUrl
                                    .replace(""", " ");
                                System.out.println("My image URL :: " +imagesUrl);
                                }else    {
                              System.out.println("NO imageurl found");           }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...