2017-06-22 104 views
0

我有這段從另一個站點加載csv的代碼。當我使用github的鏈接時,Neo4j LOAD CSV不起作用

LOAD CSV FROM 'https://www.quackit.com/neo4j/tutorial/genres.csv' AS line 
CREATE (:Genre { GenreId: line[0], Name: line[1]}) 

enter image description here

但是當我上傳同樣的CSV我的github帳戶,並嘗試它,它給了我一個錯誤。

LOAD CSV FROM 'https://www.quackit.com/neo4j/tutorial/genres.csv' AS line 
CREATE (:Genre { GenreId: line[0], Name: line[1]})[![enter image description here][2]][2] 

enter image description here 我只是改變了鏈接而已。我該如何解決這個問題?

回答

1

您需要使用該文件的RAW版本。

在您的GitHub庫,點擊您genres.csv文件,然後單擊RAW

enter image description here

然後複製網址並在LOAD命令CSV使用它:

https://raw.githubusercontent.com/JP-Reddy/Recommendation-Engine/master/genres.csv

+0

如何從我的電腦導入? 'file:C/path/destination/file.csv'不起作用。我正在使用windows –

+1

,您需要將它放在neo4j db的導入目錄中,或者允許(通過neo4j config)遍歷文件系統。檢查neo4j文檔;-) –