我想在Neo4j中创建一个节点,其中'url'作为其值(包含更多特殊字符)
这是我的样本输入csv
#Attrid:ID,URL
埃森哲,https://www.example.com/sg-en/company-leadership-team.aspx
Yeos,http://www.example.org.sg/2012-iaaf-world-indoor-championships-gary
#当我尝试使用neo4j-import导入时,我得到了“java.lang.IllegalArgumentException”。
我尝试使用'\'转义特殊字符。但它不起作用。
答案 0 :(得分:0)
您应该可以在浏览器中使用load csv
加载这些行。如果sample.csv包含这个......
ID,URL
Accenture,https://www.example.com/sg-en/company-leadership-team.aspx
Yeos,http://www.example.org.sg/2012-iaaf-world-indoor-championships-gary
然后这样的语句应该按原样加载属性
load csv with headers
from 'file:/sample.csv'
as row
create (n:Node {id: row.ID, url: row.URL})
return *