byte[] utf8 = ... byte[] latin1 = new String(utf8, "UTF-8").getBytes("ISO-8859-1");. You can exercise more control by using the lower-level Charset APIs. For ...
確定! 回上一頁