我正在尝试使用SSIS(脚本组件和带有JSON.net库的C#代码)读取JSON文件。我的JSON文件看起来很复杂,我是C#代码的新手。下面是我的JSON文件的样子。
{
"Product": {
"col1": "xyz",
"col2": "ryx"
},
"Samples": [{
"col3": "read",
"col4": "write"
},
{
"col3": "read",
"col4": "update"
}
]
}
任何帮助将不胜感激。
答案 0 :(得分:0)
您需要类似下面的类结构:
public class Product
{
public string col1 { get; set; }
public string col2 { get; set; }
}
public class Sample
{
public string col3 { get; set; }
public string col4 { get; set; }
}
public class Root
{
public Product Product { get; set; }
public Sample[] Samples { get; set; }
}
以下是您可以用来读取JSON的代码。
注意: sample.json文件包含JSON响应。
public static void Main(string[] args)
{
using (var stream = new StreamReader("sample.json"))
{
var sample = JsonConvert.DeserializeObject<Root>(stream.ReadToEnd());
Console.WriteLine(sample.Product.col1);
Console.WriteLine(sample.Product.col2);
foreach (var t in sample.Samples)
{
Console.WriteLine(t.col3);
Console.WriteLine(t.col4);
}
}
Console.Read();
}