gpt4 book ai didi

iphone - Objective-C 如何列出所有可用的编码

转载 作者:太空狗 更新时间:2023-10-30 03:52:41 25 4
gpt4 key购买 nike

在 Java 中,我可以用这段代码获得所有可用的编码:

SortedMap<String, Charset> availableCharsets = Charset.availableCharsets();
Vector allEncodes = new Vector();
for (Map.Entry<String, Charset> entry : availableCharsets.entrySet()) {
allEncodes.add(entry.getKey());
}

然后,我可以使用我想要的任何编码读取任何文件:

Reader in = new InputStreamReader(new FileInputStream(aPath), allEncodes.get(0) );

那么,有什么想法可以在 Objective-C 中实现吗

最佳答案

const NSStringEncoding* encodingArray = [NSString availableStringEncodings];

关于iphone - Objective-C 如何列出所有可用的编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13921595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com