Oracle
 sql >> Database >  >> RDS >> Oracle

Java:conta esattamente 60 caratteri da una stringa con una combinazione di caratteri UTF-8 e non UTF-8

Per quanto ho capito, vuoi limitare la String lunghezza in modo che la codificata UTF-8 la rappresentazione non supera i 60 byte. Puoi farlo in questo modo:

String s=…;
CharsetEncoder enc=StandardCharsets.UTF_8.newEncoder();
ByteBuffer bb=ByteBuffer.allocate(60);// note the limit
CharBuffer cb = CharBuffer.wrap(s);
CoderResult r = enc.encode(cb, bb, true);
if(r.isOverflow()) {
    System.out.println(s+" is too long for "
                      +bb.capacity()+" "+enc.charset()+" bytes");
    s=cb.flip().toString();
    System.out.println("truncated to "+s);
}