Java HTML Encode toHTML(String plainText)

Here you can find the source of toHTML(String plainText)

Description

to HTML

License

Open Source License

Declaration

public static String toHTML(String plainText) 

Method Source Code

//package com.java2s;
/*/*w w w  .j  a v  a2  s .  c o m*/
 * JStock - Free Stock Market Software
 * Copyright (C) 2011 Yan Cheng CHEOK <yccheok@yahoo.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

public class Main {
    public static String toHTML(String plainText) {
        plainText = plainText.replace(System.getProperty("line.separator"), "<br>");
        return "<html><head></head><body>" + plainText + "</body></html>";
    }
}

Related

  1. textToHTML(String text)
  2. toHtml(String message)
  3. toHTML(String msg)
  4. toHTML(String org, boolean inputValue)
  5. toHtml(String p_str)
  6. toHTML(String rawText)
  7. toHTML(String s)
  8. toHtml(String s)
  9. toHtml(String str)