Outer HTML
Jsoup is an open source java library for parsing and manipulating HTML with ease.
Get the latest binaries from http://jsoup.org/ .
This requires the library jsoup-1.6.1.jar to be in classpath.
The following example shows getting the outer html of a tag element.
package com.bethecoder.tutorials.jsoup.tests;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
public class OuterHtmlTest {
/**
* @param args
*/
public static void main ( String [] args ) {
String html = "<html><body><span class='show'><b>BE THE CODER</b></span></body></html>" ;
Document doc = Jsoup.parse ( html ) ;
System.out.println ( doc.outerHtml ()) ;
System.out.println () ;
Element docBody = doc.body () ;
System.out.println ( docBody.outerHtml ()) ;
System.out.println () ;
Elements span = doc.getElementsByTag ( "span" ) ;
System.out.println ( span.outerHtml ()) ;
}
}
It gives the following output,
04
<
span
class
=
"show"
><
b
>BE THE CODER</
b
></
span
>
10
<
span
class
=
"show"
><
b
>BE THE CODER</
b
></
span
>
14
<
span
class
=
"show"
><
b
>BE THE CODER</
b
></
span
>