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