From 7c98c2efafeef0faafb13e536627fc54535c41ea Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Fri, 1 May 2020 23:52:08 +0200 Subject: [PATCH] Update with information on older v6 format differences. --- dictionary-format-v6.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/dictionary-format-v6.txt b/dictionary-format-v6.txt index e84daec..25cf345 100644 --- a/dictionary-format-v6.txt +++ b/dictionary-format-v6.txt @@ -185,3 +185,17 @@ First part consists always the same 40 bytes: 1 byte 0x74: String type [String]: stop word 1 byte 0x78: blockdata end + +Note: Some even older dictionaries wrote out a LinkedHashSet instead of a +HashSet. +That adds the following bytes describing LinkedHashSet before the 0x72 above: + 0x72, // class + // Java String "java.util.LinkedHashSet" + 0x00, 0x17, 0x6a, 0x61, 0x76, 0x61, 0x2e, 0x75, 0x74, 0x69, + 0x6c, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x48, 0x61, + 0x73, 0x68, 0x53, 0x65, 0x74, + // serialization ID + 0xd8, 0x6c, 0xd7, 0x5a, 0x95, 0xdd, 0x2a, 0x1e, + 0x02, // flags + 0x00, 0x00, // fields count + 0x78 // blockdata end -- 2.43.0