编程语言
首页 > 编程语言> > Java String getBytes()方法

Java String getBytes()方法

作者:互联网

描述

这种方法有以下两种形式:

语法

此方法定义的语法如下:

public byte[] getBytes(String charsetName)
       throws UnsupportedEncodingException

or

public byte[] getBytes()

参数

这里是参数的细节:

返回值:

例子:

import java.io.*;

public class Test{

   public static void main(String args[]){
      String Str1 = new String("Welcome to Tutorialspoint.com");

      try{
         byte[] Str2 = Str1.getBytes();
         System.out.println("Returned  Value " + Str2 );

         Str2 = Str1.getBytes( "UTF-8" );
         System.out.println("Returned  Value " + Str2 );

         Str2 = Str1.getBytes( "ISO-8859-1" );
         System.out.println("Returned  Value " + Str2 );
      }catch( UnsupportedEncodingException e){
         System.out.println("Unsupported character set");
      }
   }
}

这将产生以下结果:

Returned  Value [B@192d342
Returned  Value [B@15ff48b
Returned  Value [B@1b90b39

使用场景举例:

 

可以用在IO流写入数据时使用快捷方式. 需要在new byte[]数组.

 

标签:Java,Returned,Str2,Value,字节,getBytes,String
来源: https://www.cnblogs.com/javaxubo/p/16212811.html