Home > Back-end >  Zip file decompression failed - damage of file's contents
Zip file decompression failed - damage of file's contents

Time:09-25

情况是这样子的,我正在做相机和dsp的通信,相机给dsp发了一个.zip的压缩文件,然后dsp通过udp通信传给pc,我用C编程,开始,我采用的fopen("******.zip,"wb+"),然后再用fwrite()函数写入,但是呢,这个文件打不开,显示压缩文件损坏,于是我采用调用Zlib库函数的方法,对于dsp发来的zip流数据,调用uncompress()函数解压,但是uncompress()返回Z_DATA_ERROR,我也不知道该怎么办了,有没有大神帮帮忙,谢谢了

CodePudding user response:

Why the camera was zip instead of JPG?
  • Related