資料遍歷

一杆劉發表於2020-12-13
public class StringTest {
    public static void main(String[] args) {
    	String str=new String("Hello_World");
        byte[] bytes = str.getBytes();
        for (int i = 0; i < bytes.length; i++) {
            System.out.print(bytes[i]+",");
        }
        
        System.out.println();
        String string = Arrays.toString(bytes);
        System.out.println(string);
        
        for (byte aByte : bytes) {
            System.out.print(aByte+",");
        }

    }
}

在這裡插入圖片描述

public class StringTest {
public static void main(String[] args) {
String str=new String(“Hello_World”);
System.out.println(str.charAt(1));//指定索引處的值
System.out.println(str.codePointAt(1));//指定索引處的字元(Unicode程式碼點)。
System.out.println(str.compareTo(“hello_World”));//按字典順序比較,
System.out.println(str.concat("!"));//將指定的字串連線到該字串的末尾。
System.out.println(str.contains(“llo”));//當且僅當此字串包含指定的char值序列時才返回true。
System.out.println(str.endsWith(“rld”));//測試此字串是否以指定的字尾結尾。
System.out.println(String.format( " %(,d " , - 1000000 ));//(1,000,000)
System.out.println(String.format("%tF",new Date()));
byte[] bytes = str.getBytes();
for (int i = 0; i < bytes.length; i++) {
System.out.print(bytes[i]+",");
}
System.out.println(Arrays.toString(bytes));
for (byte aByte : bytes) {
System.out.print(aByte+",");
}

}

}

相關文章