how to use a json file in c# code example
Example 1: reading a json file in c#
JObject o1 = JObject.Parse(File.ReadAllText(@"c:\videogames.json"));
// read JSON directly from a file
using (StreamReader file = File.OpenText(@"c:\videogames.json"))
using (JsonTextReader reader = new JsonTextReader(file))
{
JObject o2 = (JObject)JToken.ReadFrom(reader);
}
Example 2: how to create json file in c#
//open file stream
using (StreamWriter file = File.CreateText(@"D:\path.txt"))
{
JsonSerializer serializer = new JsonSerializer();
//serialize object directly into file stream
serializer.Serialize(file, _data);
}
Example 3: how to read json file in C#
//For any of the JSON parse, use the website
//http://json2csharp.com/
//(easiest way) to convert your JSON into
//C
public class FormatClass
{
public string JsonName { get; set; }
public string JsonPass { get; set; }
}
//Then use the JavaScriptSerializer (from System.Web.Script.Serialization),
// in case you don't want any third party DLL like newtonsoft.
public void Read()
{
using (StreamReader Filejosn = new StreamReader("Path.json"))
{
JavaScriptSerializer jss = new JavaScriptSerializer();
var Items = jss.Deserialize<FormatClass>(Filejosn.ReadToEnd());
// Add Code here :)
}
}
//by ahmed ashraf +201111490105