fork download
  1. /* package whatever; // don't place package name! */
  2. import static org.apache.commons.lang.StringEscapeUtils.unescapeHtml;
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. System.out.println(unescapeHtml("Flipkart India Pvt LtdIndustrial Plot bearing Rectangle No-28, Kila No-19/2/2 (3-4), 22/1 (5-8), 19/1/2 (1-19, and rectangle No. 28, Killa No 22/2/1 (0-8),Estate , Village Begumpur Khatola, Tehsil & Dist ? Gurgaon"));
  14.  
  15. }
  16. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:2: error: package org.apache.commons.lang does not exist
import static org.apache.commons.lang.StringEscapeUtils.unescapeHtml;
                                     ^
Main.java:2: error: static import only from classes and interfaces
import static org.apache.commons.lang.StringEscapeUtils.unescapeHtml;
^
Main.java:13: error: cannot find symbol
		System.out.println(unescapeHtml("Flipkart India Pvt LtdIndustrial Plot bearing Rectangle No-28, Kila No-19/2/2 (3-4), 22/1 (5-8), 19/1/2 (1-19, and rectangle No. 28, Killa No 22/2/1 (0-8),Estate , Village Begumpur Khatola, Tehsil & Dist ? Gurgaon"));
		                   ^
  symbol:   method unescapeHtml(String)
  location: class Ideone
3 errors
stdout
Standard output is empty