bin文件保存

Posted 小筱萌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bin文件保存相关的知识,希望对你有一定的参考价值。

C++

void saveFeature(const char * filePath,const char* data,int len)



   FILE *fp=fopen(filePath,"wb");

   if(fp)

   

       fwrite(data,512,len,fp);

      fclose(fp);

   



// FILE *fp = fopen("/sdcard/s320/enroll_byte_jni.bin", "wb");

// if (fp)

// 

// fwrite((char*)byteF, 2048, 1, fp);

// 

// fclose(fp);

android

public static void saveBin(byte[] bmp, String name) 

File f = new File("/sdcard/" + name + ".bin");

try 

    f.createNewFile();

 catch (IOException e) 



try 

   InputStream is = new ByteArrayInputStream(bmp);

   FileOutputStream os = new FileOutputStream(f);

   byte[] b = new byte[1024];

   int len = 0;

   //开始读取

   while ((len = is.read(b)) != -1) 
 
      os.write(b, 0, len);

   

//完毕关闭所有连接

   is.close();
 
   os.close();

 catch (FileNotFoundException e) 

    e.printStackTrace();

 catch (IOException e) 

    e.printStackTrace();




以上是关于bin文件保存的主要内容,如果未能解决你的问题,请参考以下文章

java 实现hex文件转换bin保存至内存中

请教高手知道怎么把TXT文件转换成BIN文件啊 指教一下 谢谢

路由器BIN文件修改

mysql日志文件目录

CentOS 定时任务文件保存及查看地方

SecureCRTPortable怎么传输.bin文件