Java,我们怎样才能减少回车和换行?

时间:2018-03-16 17:49:41

标签: java string debugging if-statement web

你好

我正在使用Java和bean开发一个Web应用程序。

我正在尝试使用转换器来检查用户使用textarea引入的消息是否少于5个字符。

难点在于,如果文本区域为空,则它仍然具有/ r / n且后面有一些空格。

我试过了alreaady:

@Stateless
public class ComentarioNota {

    // Add business logic below. (Right-click in editor and choose
    // "Insert Code > Add Business Method")
    public String convierteComentarioNota(String evaluacion, String comentario) {
        if (evaluacion.trim().equals("Apto") && comentario != null && comentario.length() > 5) {
            return "Apto";
        } else {
            return "No Apto";
        }
    }
}

在进行调试时,我们可以在comentario参数中看到注释值:

enter image description here

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:1)

您可以在修剪前删除换行符。 How to remove line breaks from a file in Java?

How to remove newlines from beginning and end of a string (Java)?

text = text.replace("\n", "").replace("\r", "");