SORU
12 AĞUSTOS 2009, ÇARŞAMBA


Java HTML kaçmak için önerilen yöntem

Önerilen bir yol düz Java kod HTML alırken,*, , * >" 3 ve & karakter kaçış var mı? (El ile aşağıdaki şekilde dışında).

String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML";
String escaped = source.replace("<", "<").replace("&", "&"); // ...

CEVAP
12 AĞUSTOS 2009, ÇARŞAMBA


StringEscapeUtils Apache Commons Lang:

import static org.apache.commons.lang.StringEscapeUtils.escapeHtml;
// ...
String source = "The less than sign (<) and ampersand (&) must be escaped before using them in HTML";
String escaped = escapeHtml(source);

version 3:

import static org.apache.commons.lang3.StringEscapeUtils.escapeHtml4;
// ...
String escaped = escapeHtml4(source);

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • International Secret Agents Concerts

    Internationa

    2 Aralık 2008
  • majesticdubstep

    majesticdubs

    3 Kasım 2011
  • snookie77

    snookie77

    2 Mart 2006