String s1 = "Hello World!"; byte[] sb = s1.getBytes(); String s2 = new String(sb); System.out.println(s1.equals(s2)); The output ...
確定! 回上一頁