Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Conversione del tipo di dati nvarchar(max) in stringa in Java

Ho provato il collegamento inviato da @Roberto Navaron, ha funzionato, ho appena passato l'oggetto a questo metodo, digita cast it to clob e restituisce string

private String clobToString(Clob data) {
    StringBuilder sb = new StringBuilder();
    try {
        Reader reader = data.getCharacterStream();
        BufferedReader br = new BufferedReader(reader);

        String line;
        while(null != (line = br.readLine())) {
            sb.append(line);
        }
        br.close();
    } catch (SQLException e) {
        // handle this exception
    } catch (IOException e) {
        // handle this exception
    }
    return sb.toString();
}