在 HTML、JAVA、Spring 中保留换行符

发布于 2024-09-24 18:04:32 字数 308 浏览 4 评论 0原文

我有一个用 HTML(前端)、java(服务器端)构建的 Web 应用程序 我在发布一些带有换行符的数据时有一个文本区域(在单词后按 Enter 键) 不保留换行符(数据彼此相邻显示,没有换行符) 如何保留换行符?请注意,我在显示时没有使用标签(必须)

我正在使用代码服务器端将新行转换为 br

public String saveLineBreaks(String text) {
        return text.replaceAll("\n", "<br/>");
    }

但它无法正常工作

i have a web application built with HTML(front-end),java(server-side)
and i have a textarea when posting some data with line breaks (pressing enter after a word)
the line breaks are not reserved (the data appears next to each other with no line breaks)
how to preserve the line breaks ?, note that i am not using the tag when displaying (have to)

i am using the code server side to convert new lines into br

public String saveLineBreaks(String text) {
        return text.replaceAll("\n", "<br/>");
    }

but it doesn't work properly

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

饮惑 2024-10-01 18:04:32

这只是一个疯狂的猜测,因为我不知道您正在使用什么网络框架等,但是:

来自

String forOutput = input.replace("\n", "<br />\n");

然而,在几乎所有可以想象到的 Web 框架中,都有一些实用方法可以手动或自动为您执行此操作,因此问题是找到适合您的方法。

This is just a wild guess, as I don't know what web framework you are using etc. but:

Text from a <textarea> will probably have line breaks (\n), but HTML will interpret them as whitespace. So on the java side, you need to do something like this:

String forOutput = input.replace("\n", "<br />\n");

However, in almost every imaginable web framework, there is some utility method that does this for you manually or automatically, so the question is to find the right one for you.

帅的被狗咬 2024-10-01 18:04:32

也许 \n 不是行分隔符。尝试使用 System.getProperty("line.separator") 。

Maybe \n isn't the line delimiter. Try using System.getProperty("line.separator").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文