"SSM Blogger (blog) Project combat 11" use Jsoup to parse out the IMG elements in HTML

Source: Internet
Author: User

Jsoup is a Java HTML parser that can parse a URL address and HTML text content directly. It provides a very labor-saving API that can be used to extract and manipulate data through dom,css and jquery-like operations.

Display the blog list, display some of the blog images, enhance the user experience;
Here, is in the background processing, the parsed picture stored in the collection, and then forwarded to the page, traverse the display.

Here is the key code:

for  (Blog blog:bloglist) {List            <String> imageslist=blog.getimageslist ();            String bloginfo=blog.getcontent ();            Document Doc=jsoup.parse (Bloginfo); Elements jpgs=doc.select  ( "img[src$=.jpg]" );            //look for a picture with a jpg extension  for  (int  i=0 ; i<jpgs.size (); i++) {Element Jpg=jpgs. get                 (i);                Imageslist.add (Jpg.tostring ()); if  (I==2 )                {break ; }            }        }

"is looking at my blog of the children's shoes, I see you imposing, the conversation between the faint king of the gas, there will be a future!" There is a "top" word, you can conveniently point it (to login csdn account first) "

-willing to share and progress together!
- More articles please see: Http://blog.csdn.net/duruiqi_fx

"SSM Blogger (blog) Project combat 11" use Jsoup to parse out the IMG elements in HTML

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.