C#程序将对象保存为json文件的方法

1. 创建文件

 

// 获取当前程序所在路径,并将要创建的文件命名为info.json 
string fp = System.Windows.Forms.Application.StartupPath + "\\info.json";
if (!File.Exists(fp))  // 判断是否已有相同文件 
{
    FileStream fs1 = new FileStream(fp, FileMode.Create, FileAccess.ReadWrite);  
    fs1.Close();
}

 

2. 序列化对象->json并写入文件

string fp = System.Windows.Forms.Application.StartupPath + "\\info.json";
File.WriteAllText(fp, JsonConvert.SerializeObject(obj));

从文件中读取对象obj的步骤:

直接从文件中反序列化到对象即可

string fp = System.Windows.Forms.Application.StartupPath + "\\info.json";
Object obji = JsonConvert.DeserializeObject(File.ReadAllText(fp));  // 尖括号<>中填入对象的类名  
  

                            
                        
                    
                    
                    

你可能感兴趣的:(c#)