使用Apache Bindy的FixedLengthRecord的子字符串

时间:2015-03-24 18:11:29

标签: apache apache-camel bindy

我正在使用apache bindy并使用 @FixedLengthRecord

@DateField(columnName="Name", pos=1, length=10)
private String name; 

现在是否有任何功能,当名称字段超过10个字符时,我们只能将它的10个字符串起来?

我相信修剪仅用于修剪空白区域。

1 个答案:

答案 0 :(得分:0)

看起来我得到了解决方案。 使用clip = true可以完成工作

@DateField(columnName="Name", pos=1, length=10, clip=true)