Java HTML Encode toHtmlLine(String input)

Here you can find the source of toHtmlLine(String input)

Description

to Html Line

License

Apache License

Declaration

public static String toHtmlLine(String input) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2011 Matt Burns/*www .jav a 2  s.c  o  m*/
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/

public class Main {
    public static String toHtmlLine(String input) {
        return ((input == null) ? "" : input + "<br/>");
    }
}

Related

  1. toHTMLContentString(String s, boolean replaceSpaces, boolean isXhtml)
  2. toHtmlCR(String text)
  3. toHTMLEncode(String string)
  4. toHTMLEscapedText(String s)
  5. toHtmlInput(String str)
  6. toHTMLString(String in)
  7. toHtmlString(String input)
  8. toHTMLString(String org)
  9. toHtmlString(String s)