Java has some good core facilities to get do this really simple.
The solution below uses regular expression to go through your content and allows you to replace the characters. This solution does require to do a little work in that you need to provide the escape codes. You can find a list of escape codes here [http://www.w3.org/TR/html4/sgml/entities.html][1] or Google the web for others.
Here is the code below:
import java.util.regex.*;
import java.util.*;
public class HtmlUnescape {
public static void main(String[] args){
HashMap<String,String> codes = new HashMap<String,String>();
codes.put("<", "<");
codes.put(">", ">");
codes.put(""", "\"");
String html = "<html><head><title>Hello</title></head><body><h1>The great escape "example"</h1></body></html>";
Matcher matcher = Pattern.compile("&#*\\w\\w\\w?\\w?;").matcher(html);
StringBuffer matchBuffer = new StringBuffer();
while(matcher.find()){
matcher.appendReplacement(matchBuffer, codes.get(matcher.group()));
}
matcher.appendTail(matchBuffer);
System.out.println (matchBuffer.toString());
}
}
What is going on in the code:
- First, the hash stores the codes to unescape.
- Second, variable html stores escape HTML to process.
- Next, we use the regex expression to search and replace the escaped codes using:
- Matcher.find(),
- Matcher.appendReplacement(), and
- Matcher.appendTail() methods.
Try that. I have no insight on performance of large files such as yours. But, the code is simple enough to where you can tweak it to get the desired performance.