android html decoding

13,511

Solution 1

Some clarification:

  • "B \u0026 M Collision Repair" is not HTML.
  • "B & M Collision Repair" is HTML.

Java to HTML

"B \u0026 M Collision Repair" is not HTML. It is a Java String literal, or how you create a string in Java code. Unicode characters are stored as decoded raw characters. The \u notation is only used to escape unicode characters when creating the string, it is not stored that way. Side note, because this ampersand character is in the ISO-8859-1 range, it does not need to be escaped in this way. "B & M Collision Repair" is the same thing in Java.

Converting Java strings to HTML is common, and should be done in order to display Java strings in a web browser. This would be called encoding HTML.

To convert Java string to HTML, thereby encoding Java raw unicode characters to HTML entities:

String java = "B \u0026 M Collision Repair";
#=> (String) "B \u0026 M Collision Repair"
#=> (String) "B & M Collision Repair"

String html = Html.escapeHtml(html);
#=> (String) "B &  M Collision Repair"
#=> (String) "B &  M Collision Repair"

#or
String html = Html.toHtml(html).toString();
#=> (String) "B &  M Collision Repair"
#=> (String) "B &  M Collision Repair"

HTML to Java

"B & M Collision Repair" is HTML. Unicode characters are stored as encoded character entities. The &#x; notation is used to escape unicode characters for transmission over ISO-8859-1. A web browser decodes them to display actual unicode characters.

Converting HTML to Java strings is less common, and is usually reserved for 'scraping' or 'parsing' Java strings for storage and display in some system that does not support HTML. This would be called decoding HTML.

To convert HTML to Java string, thereby decoding HTML entities to Java raw unicode characters:

String html = "B & M Collision Repair";
#=> (String) "B & M Collision Repair"

String java = Html.fromHtml(html).toString();
#=> (String) "B \u0026 M Collision Repair"
#=> (String) "B & M Collision Repair"

Solution 2

Even I had the same issue. Try this,

Spanned ss=Html.fromHtml(your String);
String tempString=ss.toString();
Share:
13,511
michaelsmith
Author by

michaelsmith

Updated on June 04, 2022

Comments

  • michaelsmith
    michaelsmith about 2 years

    I am confused about html text that I need to decode before I display it to the user. I do:

    result= Html.fromHtml(temp).toString();
    

    where temp contains something like: "B \u0026 M Collision Repair". However result contains exactly the same as temp after execution. What am I missing here?

    • Zoltán
      Zoltán over 12 years
      What do you expect to get? Are you sure you didn't mean HTTP decode?
    • michaelsmith
      michaelsmith over 12 years
      actually yes, it should be http. I guess I am on the wrong track. Can you guide me?
  • Andro Selva
    Andro Selva over 12 years
    Did u just try result= Html.fromHtml(temp); without toString();
  • Andro Selva
    Andro Selva over 12 years
    I mean apply it directly. textView.setText(Html.fromHtml(stirng);
  • chelo_c
    chelo_c over 8 years
    it worked for my problem. i need to decode things like %22 and %20 . and it worked great. THanks
  • blueware
    blueware almost 8 years
    Use: result = Html.fromHtml(Html.fromHtml(yourString).toString());