I'm having issues reading a binary PList. I'm using a windows computer and I've tried several pList readers. I really can't seem to get past the error "unexpected character 'b' at line 1".
Apple Plist Error "Unexpected character 'b' at line 1"
I just had the same issue. I previously made the mistake of editing the bplist with a text editor and reverting the change with said text editor afterwards. Even though the edited file looked exactly the same as the original in a text editor, their binary representation was not the same anymore.
This is why plutil
failed to convert the file for me. Hope this helps someone!
© 2022 - 2025 — McMap. All rights reserved.
bplist
. I can imagine that OP uses plist readers that can only interpret plists in textual (XML/OpenStep) format, but not binary plists. – Cowellplutil -convert xml1 file.plist
on a Mac first. Although there is something calledlibplist
knocking about. See this article. – Wickplutil
doesn't recognize binary plists anymore? Which seems awfully strange... or maybe there's some other detail. Seems like maybe trying to use theCoreFoundation
framework and reading it using a format ofkCFPropertyListBinaryFormat_v1_0
?? Though I'm also finding some hints of more recent versions of binary plists, so... ?? Anyway, you're not alone in seeing this error! – Giddens