Java 8 Streams: IntStream to String(Java 8 流:IntStream 到字符串)
问题描述
在 Java 8 流 API 中,对任何 String 对象调用 chars() 会返回一个包含所有字符的 IntStream 对象.
In Java 8 streams API, calling chars() on any String object returns an IntStream object containing all the characters.
将返回的 IntStream 对象转换回 String 的正确方法是什么?调用 toArray() 会给我一个 int[],它不被任何 String 构造函数接受.
What would be the correct way to convert the returned IntStream object back to a String? Calling toArray() would give me an int[], which is not accepted by any of the String constructor.
推荐答案
你可以使用toArray(),然后String(int[], int, int) 构造函数.这并不完全令人满意,因为 chars() 被指定返回 UTF-16 代码单元,基本上:
You can use toArray(), then the String(int[], int, int) constructor. This isn't entirely satisfactory as chars() is specified to return UTF-16 code units, basically:
返回一个 int 流,对该序列中的 char 值进行零扩展.任何映射到代理代码点的字符都会未经解释地传递.
Returns a stream of int zero-extending the char values from this sequence. Any char which maps to a surrogate code point is passed through uninterpreted.
使用 codePoints() 相反会更符合这个构造函数,它需要代码点而不是 UTF-16 代码单元.否则(使用 chars)如果您的原始字符串 确实 包含代理对,您可能会发现错误 - 我没有尝试过,但它会有意义.
Using codePoints() instead would be more in-keeping with this constructor, which expects code points rather than UTF-16 code units. Otherwise (with chars) if your original string does contain surrogate pairs, you may find you get an error - I haven't tried it, but it would make sense.
我不知道不先转换为数组的简单方法.
I don't know of a simple way of doing this without converting to an array first.
这篇关于Java 8 流:IntStream 到字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 8 流:IntStream 到字符串
基础教程推荐
- 从 python 访问 JVM 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 大摇大摆的枚举 2022-01-01
- Java Swing计时器未清除 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
