使用Python导出基于二进制文件

时间:2014-10-08 04:17:19

标签: java python binary utf-16 utf-32

我目前正在为Blender制作一个导出脚本,不过我觉得我的问题更多地基于Python,所以我在这里发布了它。

一位朋友在java中为.obj文件创建了一个转换程序,将其转换为自定义二进制文件格式。但是,我想跳过该过程并直接从Blender导出二进制文件。

该文件包含文本,整数和浮点数,使用utf-8,utf-16和utf-32格式。

到目前为止,我将所有数据导出为标准文本文件,因此我只需要以适当的编码/格式输出。以下是他在Java中使用的代码,用于以不同的编码将数据写入文件:

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;

public class StreamConverter {

//---------------------------------------------------

public static void buffer_write_string(DataOutputStream out,String text) throws IOException{
    byte[] bytes = text.getBytes();
    for(int i =0;i<text.length();i++){
        buffer_write_u8(out,bytes[i]);
    }
}

public static void buffer_write_u32(DataOutputStream out,int i) throws IOException{
    ByteBuffer b = ByteBuffer.allocate(4);
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putInt(i);
    out.write(b.array());       
}

public static void buffer_write_u16(DataOutputStream out,int i) throws IOException{
    out.write((byte) i);
    out.write((byte) (i >> 8));     
}

public static void buffer_write_s16(DataOutputStream out,int i) throws IOException{
    out.write((byte) i);
    out.write((byte) (i >> 8));     
}

public static void buffer_write_s32(DataOutputStream out,int i) throws IOException{
    ByteBuffer b = ByteBuffer.allocate(4);
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putInt(i);
    out.write(b.array());
}

public static void buffer_write_u8(DataOutputStream out,int i) throws IOException{
    out.writeByte((byte) i);
}

public static void buffer_write_s8(DataOutputStream out,int i) throws IOException{
    out.writeByte((byte) i);
}

public static void buffer_write_f64(DataOutputStream out,double i) throws IOException{
    ByteBuffer b = ByteBuffer.allocate(8);
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putDouble(i);
    out.write(b.array());

}

public static void buffer_write_f32(DataOutputStream out,float i) throws IOException{
    ByteBuffer b = ByteBuffer.allocate(4);
    b.order(ByteOrder.LITTLE_ENDIAN); 
    b.putFloat(i);
    out.write(b.array());
}

}

我不确定如何做到这一点是Python,我试着看看我是否至少可以正确输出整数,但没有运气。

def write_u8(file, num):
    enum = num.encode('utf-8')
    file.write(enum)

def write_u16(file, num):
    enum = num.encode('utf-16')
    file.write(enum)

def write_u32(file, num):
    enum = num.encode('utf-32')
    file.write(enum)

示例用法:

write_u32(file, u'%i' % (vertex_count))

也尝试了这个:

counts = bytes([vertex_count,tex_count,normal_count])
file.write(counts)

我对这整个二进制/编码事情有点迷失,我已经阅读了Python文档,但它没有帮助。

指向教程或示例的任何链接都会很棒!

1 个答案:

答案 0 :(得分:0)

根据我的理解,您想要做的是序列化您的对象并将其反序列化。在python Pickle中是您正在寻找的包。您可以查看其文档here