- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我有一个非常大的 Json 文件(几 MB)要解析,但没有合适的文档。生活艰难。据我所知,文件中的对象很容易识别。但是有些事情我不明白,简单的 Codable 协议(protocol)失败了。在数组 layers
中,我可以找到三个 Layer 对象,每个对象都有属性 elements
。在 elements
我可以找到多个 elementData
- 在第一层有 "ImageID":32dd...
和 component
,在第二和第三层 "name":...
和 "contours": [...]
。可能会有更多的可能性。我的每次尝试都以错误结束。
抱歉,这段代码会很长,但我不想删减可能很重要的部分:
"layers":[
{
"name":"img",
"elements":[
{
"elementData":{
"imageId":"32dd800000002"
},
"transform":{
"xScale":100,
"yScale":100
},
"active":true
},
{
"component":{
"glyphName":"e",
"layerName":"img"
}
},
{
"elementData":{
"composite":{
"builder":{
"builderGroup":{
}
}
}
},
"transform":{
"xOffset":120
},
"nonSpacing":true
}
],
"color":"maroon",
"active":true
},
{
"name":"Black",
"elements":[
{
"component":{
"glyphName":"e",
"layerName":"Black"
}
},
{
"elementData":{
"name":"caron",
"contours":[
{
"nodes":[
"80 577",
"107 549 142 550 167 575 s"
]
}
]
}
}
],
"color":"#00802a"
},
{
"name":"Thin",
"elements":[
{
"component":{
"glyphName":"e",
"layerName":"Thin"
}
},
{
"elementData":{
"name":"caron",
"contours":[
{
"nodes":[
"102 597 s",
"118 580 132 580 148 597 s",
"250 710",
"235 726",
"110 613",
"140 613",
"14 726",
"-1 710"
]
}
]
}
}
],
"color":"#6a8000"
}
],
如何处理?
最佳答案
https://app.quicktype.io , 正确的 json
{ "layers":[
{
"name":"img",
"elements":[
{
"elementData":{
"imageId":"32dd800000002"
},
"transform":{
"xScale":100,
"yScale":100
},
"active":true
},
{
"component":{
"glyphName":"e",
"layerName":"img"
}
},
{
"elementData":{
"composite":{
"builder":{
"builderGroup":{
}
}
}
},
"transform":{
"xOffset":120
},
"nonSpacing":true
}
],
"color":"maroon",
"active":true
},
{
"name":"Black",
"elements":[
{
"component":{
"glyphName":"e",
"layerName":"Black"
}
},
{
"elementData":{
"name":"caron",
"contours":[
{
"nodes":[
"80 577",
"107 549 142 550 167 575 s"
]
}
]
}
}
],
"color":"#00802a"
},
{
"name":"Thin",
"elements":[
{
"component":{
"glyphName":"e",
"layerName":"Thin"
}
},
{
"elementData":{
"name":"caron",
"contours":[
{
"nodes":[
"102 597 s",
"118 580 132 580 148 597 s",
"250 710",
"235 726",
"110 613",
"140 613",
"14 726",
"-1 710"
]
}
]
}
}
],
"color":"#6a8000"
}
]}
解析
struct Welcome: Codable {
let layers: [Layer]
}
struct Layer: Codable {
let name: String
let elements: [Element]
let color: String
let active: Bool?
}
struct Element: Codable {
let elementData: ElementData?
let transform: Transform?
let active: Bool?
let component: Component?
let nonSpacing: Bool?
}
struct Component: Codable {
let glyphName, layerName: String
}
struct ElementData: Codable {
let imageID: String?
let composite: Composite?
let name: String?
let contours: [Contour]?
enum CodingKeys: String, CodingKey {
case imageID = "imageId"
case composite, name, contours
}
}
struct Composite: Codable {
let builder: Builder
}
struct Builder: Codable {
let builderGroup: BuilderGroup
}
struct BuilderGroup: Codable {
}
struct Contour: Codable {
let nodes: [String]
}
struct Transform: Codable {
let xScale, yScale, xOffset: Int?
}
do {
let res = try JSONDecoder().decode(Welcome.self,from:data)
}
catch {
print(error)
}
编辑:
struct Welcome: Codable {
let layers: [Layer]
}
struct Layer: Codable {
let name: String
let elements: [Element]
let color: String
let active: Bool?
}
struct Element: Codable {
let elementData: ElementDataUnion?
let transform: Transform?
let active: Bool?
let component: Component?
let nonSpacing: Bool?
}
struct Component: Codable {
let glyphName, layerName: String
}
enum ElementDataUnion: Codable {
case elementDataClass(ElementDataClass)
case string(String)
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if let x = try? container.decode(String.self) {
self = .string(x)
return
}
if let x = try? container.decode(ElementDataClass.self) {
self = .elementDataClass(x)
return
}
throw DecodingError.typeMismatch(ElementDataUnion.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for ElementDataUnion"))
}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .elementDataClass(let x):
try container.encode(x)
case .string(let x):
try container.encode(x)
}
}
}
struct ElementDataClass: Codable {
let composite: Composite?
let name: String?
let contours: [Contour]?
}
struct Composite: Codable {
let builder: Builder
}
struct Builder: Codable {
let builderGroup: BuilderGroup
}
struct BuilderGroup: Codable {
}
struct Contour: Codable {
let nodes: [String]
}
struct Transform: Codable {
let xScale, yScale, xOffset: Int?
}
如果你需要 elementData
为字典/字符串 ,,,,, elements
为数组/字符串则使用
struct Welcome: Codable {
let layers: [Layer]
}
struct Layer: Codable {
let name: String
let elements: Elements
let color: String
let active: Bool?
}
enum Elements: Codable {
case elementArray([Element])
case string(String)
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if let x = try? container.decode([Element].self) {
self = .elementArray(x)
return
}
if let x = try? container.decode(String.self) {
self = .string(x)
return
}
throw DecodingError.typeMismatch(Elements.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for Elements"))
}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .elementArray(let x):
try container.encode(x)
case .string(let x):
try container.encode(x)
}
}
}
struct Element: Codable {
let component: Component?
let elementData: ElementDataUnion?
}
struct Component: Codable {
let glyphName, layerName: String
}
enum ElementDataUnion: Codable {
case elementDataClass(ElementDataClass)
case string(String)
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
if let x = try? container.decode(String.self) {
self = .string(x)
return
}
if let x = try? container.decode(ElementDataClass.self) {
self = .elementDataClass(x)
return
}
throw DecodingError.typeMismatch(ElementDataUnion.self, DecodingError.Context(codingPath: decoder.codingPath, debugDescription: "Wrong type for ElementDataUnion"))
}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
switch self {
case .elementDataClass(let x):
try container.encode(x)
case .string(let x):
try container.encode(x)
}
}
}
struct ElementDataClass: Codable {
let name: String
let contours: [Contour]
}
struct Contour: Codable {
let nodes: [String]
}
关于Swift Codable : parsing JSON with dictionary? 多个不同的条目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53047238/
我正在用 Python (2.6) 编写一个应用程序,需要我使用字典作为数据存储。 我很好奇拥有一个大字典是否更节省内存,或者将其分解为许多(很多)较小的字典,然后拥有一个包含对所有较小字典的引用的“
Convert this [ "Cat" : ["A" : 1, "B": 2], "Mat" : ["C" : 3, "D": 4] ] Into [ "A" : 1,
有什么很酷的快速方法可以让两个字典创建第三个字典,以内连接方式将第一个字典的键映射到第二个字典的值? Dictionary dic1 = new Dictionary {{a1,b1},{a2,b2}
我希望将字典相互嵌套,以便容纳 block 的 xy 坐标。所以我会 IDictionary, IDictionary> 键 Dictionary 包含列、行组合,而值 Dictionary 包含 x
在 C# 中,我需要将数据保存在字典对象中,如下所示: Dictionary> MyDict = new Dictionary>(); 现在我意识到,在某些情况下我需要一些其他(不是字典类的)
第一个Dictionary就像 Dictionary ParentDict = new Dictionary(); ParentDict.Add("A_1", "1")
我似乎无法理解这个问题。我需要使用 LINQ 按内部字典的值对字典进行排序。有什么想法吗? 最佳答案 你的意思是你想要所有的值,按内部值排序? from outerPair in outer from
我想建模一个模式,其中响应是字典: { 'id1': { 'type': 'type1', 'active': true, }, 'id2': { 'type':
我有以下代码要添加或更新(如果已经存在)dict()-dict 中的值: if id not in self.steps: self.steps[ id ] = step else:
我有一个包含字典的 Swift 字典,我想使用存储的属性来访问键值: var json = [NSObject:AnyObject]() var title: String { get
我想创建一个 Dictionary>结构,我想提供一个 IEqualityComparer在包含 APerson 的second 字典中作为关键 如果我只有内部字典,那就是 var f = new D
我有一个集合,其中包含如下文档:文档 1: { "company": "ABC" "application": { "app-1": {"earning_from_src_A": 50,
我正在快速学习。 我发现 dictionary 就像 hash 用于 PHP 或其他一些语言。 那我怎么制作dictionary的dictionary呢?? 我有这样的数据 key:J name:jh
这个问题在这里已经有了答案: Explode a dict - Get all combinations of the values in a dictionary (2 个答案) 关闭 5 个月前
我是编程新手,所以如果我的问题看起来很愚蠢,我很抱歉。我想问一下有没有办法从 Multi.Dictionary 返回key当我有值(value)? 这是我的代码: Dim myDict Set myD
我试图找出标准 Ada 库是否配备了“字典”类型(我的意思是:一种以 格式存储值的数据结构,我可以从中检索 value 使用相应的唯一 key)。 这样的数据结构存在吗?如果是这样,有人可以提供一个
我究竟做错了什么?根据我的测试,objDic.exists 永远不会给出 False! dim objDic set objDic = createobject("scripting.
我想创建一个复合类型,其中包含一个字典作为其命名字段之一。但是明显的语法不起作用。我敢肯定有一些我不明白的基本原理。下面是一个例子: type myType x::Dict() end Jul
julia> hotcell2vocab = Dict([(cell, i-1+vocab_start) for (i,cell) in enumerate(h
我有一个简单的问题:我对 Dictionary.Value 集合进行了很多次迭代,这让我很烦,我必须调用 .ToList() 然后才能调用 .ForEach(),因为它似乎没有可枚举的Dictiona
我是一名优秀的程序员,十分优秀!