我使用这条线来构建驱动器查询
request.setQ("fullText contains '" + originalFileName + "'");
但是,当 originalFilename 包含“'”时,请求会引发此错误:
com.google.api.client.googleapis.json.GoogleJsonResponseException: 400 Bad Request { "code" : 400, "errors" : [ {
"domain" : "global",
"location" : "q",
"locationType" : "parameter",
"message" : "Invalid Value",
"reason" : "invalid" } ], "message" : "Invalid Value" }
我理解为什么会抛出错误,但是如何构建搜索字符串来查找可索引文本中包含“常见问题解答”的文件?是否有通配符或转义符?