RFR: 8288589: Files.readString ignores encoding errors for UTF-16 [v2]
Naoto Sato
naoto at openjdk.org
Sat Jun 18 00:31:06 UTC 2022
> This is a regression caused by the fix to [JDK-8286287](https://bugs.openjdk.org/browse/JDK-8286287), which assumed the method `String.decodeWithDecoder()` was only invoked with cs.REPLACE mode based on the comment "should not happen". Possibly this refers to the `String(byte[], int, int, Charset)` constructor, which specifically mentions the `REPLACE` mode. However, the method is invoked with `String.newStringNoRepl()` and it should NOT replace the malformed input (duh!). The fix is to throw an `Error` for the former case as before the regression, and `CharacterCodingException` for the latter via an `IllegalArgumentException`.
> In fact, `Files.readString()` stopped throwing a `MalformedInputException` since JDK17 with the fix to JDK-8259842, which started throwing an `Error`.
Naoto Sato has updated the pull request incrementally with one additional commit since the last revision:
Added c2b test
-------------
Changes:
- all: https://git.openjdk.org/jdk/pull/9193/files
- new: https://git.openjdk.org/jdk/pull/9193/files/ea8618fa..e1afd207
Webrevs:
- full: https://webrevs.openjdk.org/?repo=jdk&pr=9193&range=01
- incr: https://webrevs.openjdk.org/?repo=jdk&pr=9193&range=00-01
Stats: 140 lines in 2 files changed: 85 ins; 55 del; 0 mod
Patch: https://git.openjdk.org/jdk/pull/9193.diff
Fetch: git fetch https://git.openjdk.org/jdk pull/9193/head:pull/9193
PR: https://git.openjdk.org/jdk/pull/9193
More information about the core-libs-dev
mailing list