If i read-in shape files some integer attribute values get lost and a zero is written!?
This is 64 bit problem. There are 2 solutions: If you are able to programm, you can change in the package com.vividsolutions.jump.feature the class AttributeTypes: public final static AttributeType INTEGER = new AttributeType(“INTEGER”, Integer.class) and change it to: public final static AttributeType INTEGER = new AttributeType(“INTEGER”, Long.class The second solution – if you dont have programming knowledge – is, to change the attribute type of your dbf table from Integer to Double.