Camel 使用 Simple DSL 用 LF 替换所有 CRLF [英] Camel replace all CRLF with LF using Simple DSL

查看:36
本文介绍了Camel 使用 Simple DSL 用 LF 替换所有 CRLF的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试用 LF 替换输入数据的 CRLF,但这破坏了路线.我的代码如下图

I am trying to replace the CRLF of the input data with LF but this is breaking the route. My code is as shown below

from(fromEndpoint)
    .convertBodyTo(byte[].class, "iso-8859-1")
    .setBody(simple("body.replaceAll(\r\n, \n)"))....

如果我把 setbody 拿出来它就完美了.我只想要平台相关的换行符

if I take the setbody out it works perfect. I just want platform dependent line feeds

知道我做错了什么吗?

谢谢

推荐答案

已解决

from(fromEndpoint)
    .convertBodyTo(byte[].class, "iso-8859-1")
    .setBody(body().regexReplaceAll("\\r\\n", "\\\n"))

这篇关于Camel 使用 Simple DSL 用 LF 替换所有 CRLF的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆