How to convert char[] to string in java? - Stack Overflow
經安全檢測,此網站為安全網站,請放心前往原始網址!
How to convert char[] to string in java? - Stack Overflow
2013年10月8日 - char[] c = string.toCharArray();. but how to convert c back to String ... You can use String.valueOf(char[]) : String.valueOf(c). Under the hood, this ...