コード例 #1
0
ファイル: Commons.java プロジェクト: BackupTheBerlios/beebb
 /* Metoda przygotowuje wypowiedź z bazy do wypisania jej na stronie  do edycji
  * @param text string który zostanie zmodyfikowany
  * @return Zmodyfikowany String
  */
 public static String wypowiedzDoTekst(String text) {
   text = text.replaceAll("<br/>", "\r\n");
   text = text.replaceAll("&#39;", "'");
   text = text.replaceAll("&lt;", "<");
   text = text.replaceAll("&gt;", ">");
   text = text.replaceAll("&amp;", "&");
   text = text.replaceAll("&quot;", "\"");
   text = Commons.zabierzEmotikonki(text);
   return text;
 }
コード例 #2
0
ファイル: Commons.java プロジェクト: BackupTheBerlios/beebb
 /* Metoda przygotowuje wpisaną wypowiedź użytkownika do wprowadzenia do bazy
  * @param text string który zostanie zmodyfikowany
  * @return Zmodyfikowany String
  */
 public static String wypowiedzDoBazy(String text) {
   text = text.replaceAll("&", "&amp;");
   text = text.replaceAll("<", "&lt;");
   text = text.replaceAll(">", "&gt;");
   text = text.replaceAll("\"", "&quot;");
   text = text.replaceAll("'", "&#39;"); // \\\\'");
   text = text.replaceAll("\r\n", "<br/>");
   text = text.replaceAll("\n", "<br/>");
   text = Commons.dodajEmotikonki(text);
   return text;
 }