Hello everyone! I found the way.
You must use an OraclePreparedStatement

. It must be something like this:
String sql = "insert into table values('abc',123,?)";
OraclePreparedStatement st = (OraclePreparedStatement) connection.prepareStatement(sql); //where connection is your connection with Oracle
st.setStringForClob(1, /*String variable which contains the CLOB string*/);
st.executeUpdate();
And that's it!. Hope this helps anyone with the same issue!