I'm using oracle adf to display a table. The results in my 'notes' field have /n in the table to represent a new line. Oracle ADF does not separate the lines. I want to manually modify the string to display the break line. The string looks like: return new String(getAttributeInternal(NOTES).toString().replace("\n", "\n")); That however is not working, anyone know a working solution? ...