假如是内容不变的话,直接File.copy()就可以;假如是要3d模型转码的话,建议去网上找对应的转码.dll(c#动态链接类库),然后调用假如有心的话自己写转码过程也行(滑稽)cubik studio pro不香吗
Student student = new Student("stu1","stuName"); //序列化为JSONJavaScriptSerializer js = new JavaScriptSerializer(); string stuJSON = js.Serialize(student);Console.WriteLine("序列化JSON字符串为:{0}", stuJSON);//反序列化为TStudent stu1 = js.Deserialize<Student>(stuJSON);Console.WriteLine("ID:{0};Name:{1}", stu1.ID, stu1.Name);// 其中Studnet 换为你的OBJ模型