c#中

byte[] data=Encoding.Default.GetBytes(“你哈”);

string text=Encoding.Default.Getstring(data);

 

java中

byte[] data=text.getBytes("iso-8859-1")

string text =new string(data,'iso-8859-1'");

相关文章:

  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-18
  • 2021-07-15
猜你喜欢
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-29
相关资源
相似解决方案