我是java新手。我想将从中选择的文件路径插入FileChooser
到数据库中。但是当我尝试这样做时,路径在查询语句之前是正确的,并且在将其输入数据库后,它会删除文件路径中存在的所有反斜杠。
filepath=f.getCanonicalPath();
// some database statements....
String query="insert into table1 values('" + filepath + "')";
如果我选择的文件路径是:
"C:\users\documents\hello.txt";
它将其插入为:
“C:Usersdocumentshello.txt”