- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么下面的程序打印错误,我必须做哪些更改才能使其打印正确?
public class Main {
static int[] codePoints(String s) {
int n = s.length();
int[] temp = new int[n];
for (int i = 0; i < n; i++)
temp[i] = s.codePointAt(i);
return temp;
}
static String construct(int[] codePoints) {
StringBuilder sb = new StringBuilder();
for (int i : codePoints)
sb.appendCodePoint(i);
return sb.toString();
}
public static void main(String[] args) {
StringBuilder sb = new StringBuilder("The symbol ");
sb.appendCodePoint(Character.MAX_VALUE + 1);
sb.append(" is not in the Basic Multilingual Plane.");
String s = sb.toString();
System.out.println(s.equals(construct(codePoints(s))));
}
}
最佳答案
问题出在这里:
static int[] codePoints(String s) {
int n = s.length();
int[] temp = new int[n];
for (int i = 0; i < n; i++)
temp[i] = s.codePointAt(i); // <-- HERE
return temp;
}
BMP 之外的代码点是两个 char
宽,而不是一个(参见Character.toChars()
);如果你遇到这样的代码点,你需要检查并推进你的索引:
static int[] codePoints(final String s)
{
final int len = s.length();
final int[] ret = new int[s.codePointCount(0, len)];
int nrCodePoints = 0;
int codePoint;
int index;
for (index = 0; index < len; index++) {
codePoint = s.codePointAt(index);
ret[nrCodePoints++] = codePoint;
if (codePoint > Character.MAX_VALUE)
index++;
}
return ret;
}
关于java - appendCodePoint() 和 codePointAt(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27597293/
在 javascript 中有一个函数 codePointAt它返回一个数字,表示给定索引处字符的代码点值。是否有类似于 codePointAt 函数的 UDF 或内置函数? var icons =
我正在尝试遍历 Javascript 字符串中的 Unicode 字符,我假设它是用 UTF-16 编码的。 据我了解,UTF-16 是可变宽度。也就是说,单个 Unicode 字符可以拆分为多个 1
为什么下面的程序打印错误,我必须做哪些更改才能使其打印正确? public class Main { static int[] codePoints(String s) { i
如果我使用从 33 到 127 的任何 ASCII 字符,codePointAt 方法会给出正确的十进制值,例如: String s1 = new String("#"); int val = s1.
最近我遇到了codePointAt Java中String的方法。我还发现了其他一些 codePoint 方法:codePointBefore、codePointCount 等。它们肯定与 Unico
String.prototype.codePointAt() 和有什么区别和 String.prototype.charCodeAt()在 JavaScript 中? 'A'.codePointAt(
我在 JAVA 中有这段代码并且工作正常 String a = "ABC"; System.out.println(a.length()); for (int n = 0; n
从 Firefox 29 版本开始,Mozilla 提供 String.fromCodePoint和 String#codePointAt方法,并在各自的 MDN 页面上发布了 polyfill。 所
(以免因为过于本地化而关闭,我选择了 Ꙭ 作为示例,但许多其他字符也会出现这种情况) 字符 Ꙭ 是\uA66C 或十进制的 42604 ( http://unicodinator.com/#A66C
我是一名优秀的程序员,十分优秀!