骆驼使用简单DSL将所有CRLF替换为LF [英] Camel replace all CRLF with LF using Simple DSL

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

问题描述

我试图用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)"))....

如果我把机体拿出来,那就完美了.我只想要平台相关的换行符

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

有任何想法我在做什么错吗?

Any ideas what I am doing wrong?

谢谢

推荐答案

解决了这个问题

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

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

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