windows下fopen,fclose断电数据丢失解决办法2023-10-15 09:34:28 #include <io.h> //在fclose之前调用fflush和_commit,可以有效防止断电数据丢失 fflush(file); _commit(fileno(file)); fclose(file); windows下fopen,fclose断电数据丢失解决办法上一篇:Android开发系列(七) Gallery 3D效果下一篇:android SharedPreferences 使用