21xrx.com
2025-01-12 13:45:22 Sunday
文章检索 我的文章 写文章
如何使用Java计算字符串大小?
2023-06-15 08:54:14 深夜i     8     0
Java 字符串 大小 计算 length()方法 getBytes()方法

在Java中,计算字符串大小是非常简单的。可以使用内置的String类中的length()方法来计算字符串的大小(即字符串中字符的数量)。另外,可以使用getBytes()方法来获得字符串的字节数,从而计算出字符串的大小。

下面是一个示例程序。它使用了length()和getBytes()方法来分别计算字符和字节的大小:

public class StringSize {
 public static void main(String[] args) {
  String str = "hello world";
  int size1 = str.length();
  int size2 = str.getBytes().length;
  System.out.println("Size of string (character count): " + size1);
  System.out.println("Size of string (byte count): " + size2);
 }
}

该程序将输出以下内容:

Size of string (character count): 11
Size of string (byte count): 11

  
  

评论区