You can try https://github.com/sroycode/neo4j-import
This fills the data directly from a pair of CSV files (records should be split into COMMA)
To build: (you need maven)
sh build.sh
The node file has a required field identifier and any other fields that you like
NODES.txt id,name,language 1,Victor Richards,West Frisian 2,Virginia Shaw,Korean 3,Lois Simpson,Belarusian
The relationship file has 3 required fields from, to, type. Assuming you have a field age (long integer) and information, the relationship file will look like
RELNS.txt from,to,type, age@long ,info 1,2,KNOWS,10,known each other from school 1,3,CLUBMATES,5,member of country club
Duration:
sh run.sh graph.db NODES.txt RELNS.txt
will create graph.db in the current folder, which you can copy to the neo4j data folder.
Note: If you use neo4j later than 1.6. *, Add this line to conf / neo4j.properties
allow_store_upgrade = true
Good luck.