문제

Are there any ready-to-use and maintainted for a long time "universal" binary formats that I could use for free? I'm writing a game in Java and I considered writing own binary format to save maps to, but then I thought: maybe there're some solutions ready-to-use?

By "universal binary format" I mean format that will allow me to save any common structure (String, int, float, double, custom structures like Vector3f - 3 float values as one object, etc.), will be space, RAM and CPU-efficient and will have parser (and saver) written in Java.

Is there anything like this available? Or must I write my own format?

도움이 되었습니까?

해결책

Hava a look at

There are also various performance comparisons about e.g. Benchmarking

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top