在Java中,可以使用String類的length()方法來查看字符串的長度。這個方法返回字符串中字符的數量。下面是一個示例:
String text = "Hello World";
int length = text.length();
System.out.println("Length of the string: " + length);
輸出結果將是:
Length of the string: 11
這里,我們使用length()方法獲取字符串text的長度,并將結果打印出來。