在Java中,可以使用String類的length()方法來獲取字符串的長度。這個方法返回一個整數,表示字符串中字符的數量。下面是一個簡單的示例代碼:
String str = "Hello, World!";
int length = str.length();
System.out.println("The length of the string is: " + length);
在這個示例中,我們定義一個字符串變量str
,并使用length()
方法獲取它的長度,并將結果打印出來。在這種情況下,輸出將是The length of the string is: 13
,因為字符串中有13個字符(包括空格和標點符號)。