1
vote
how to convert tis-620 string to utf-8 string in java
import java.nio.ByteBuffer
import java.nio.CharBuffer
....
public static ByteBuffer toByteBuffer(String content, String encode) {
Charset charset = …
