3

我有一个包含长文本的数据库字段。

我希望它被逗号分隔符分割并打印在下一行。

例如:

Field  : Description

Data   : Hibernate Query Language (HQL) is an object-oriented query language, similar to SQL, but instead of operating on tables and columns, HQL works with persistent objects and their properties.

我希望它打印为:

Hibernate Query Language (HQL) is an object-oriented query language, 

similar to SQL,

but instead of operating on tables and columns,

HQL works with persistent objects and their properties.
4

1 回答 1

3

在您的查询中,您可以将逗号替换为“,\n”。"\n" 将在 Jasper 文本字段中强制换行。

在 MYSQL 中,您可以使用 REPLACE 函数。它看起来像这样:

REPLACE(FIELDNAME, ',', ',\n')
于 2012-06-21T14:18:53.057 回答