prince1129 2012-05-24 10:54
浏览 2341
已采纳

new String()默认的编码是什么?

不同的系统中new String()出来的字符串编码是不是一样的?
不同系统下new String的默认编码是什么呢?

  • 写回答

2条回答 默认 最新

  • iteye_7589 2012-05-24 13:21
    关注

    这个问题其实直接跟进 java的源码就知道了:
    用的是Charset.defaultCharset().name();

    [code="java"]
    public String(byte bytes[]) {
    this(bytes, 0, bytes.length);
    }

    public String(byte bytes[], int offset, int length) {
    checkBounds(bytes, offset, length);
    char[] v = StringCoding.decode(bytes, offset, length);
    this.offset = 0;
    this.count = v.length;
    this.value = v;
    }

    static char[] decode(byte[] ba, int off, int len) {
    String csn = Charset.defaultCharset().name();
    try {
    return decode(csn, ba, off, len);
    } catch (UnsupportedEncodingException x) {
    warnUnsupportedCharset(csn);
    }
    try {
    return decode("ISO-8859-1", ba, off, len);
    } catch (UnsupportedEncodingException x) {
    // If this code is hit during VM initialization, MessageUtils is
    // the only way we will be able to get any kind of error message.
    MessageUtils.err("ISO-8859-1 charset not available: "
    + x.toString());
    // If we can not find ISO-8859-1 (a required encoding) then things
    // are seriously wrong with the installation.
    System.exit(1);
    return null;
    }
    }

    [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?