我正在尝试使用 HttpClient 将文件上传/删除到 webdav 服务器。但是,只要我的文件名包含空格,就没有任何工作。我收到一条错误消息,提示“无效的 URI --- 转义的绝对路径无效”。
这是我的 URL = "http://localhost:8080/test file.txt"
private boolean delete(String fileName) {
HttpClient client = new HttpClient();
HttpHost host = new HttpHost(WEBDAV_URL, PORT_NUMBER);
client.getHostConfiguration().setHost(host);
DeleteMethod del = new DeleteMethod(WEBDAV_URL_COMPLETE + fileName);
try {
client.executeMethod(del);
return true;
} catch (HttpException e) {
e.printStackTrace();
return false;
} catch (IOException e) {
e.printStackTrace();
return false;
}
}
我应该使用任何方法或 URL 解析来解决问题吗
谢谢
编辑,通过用“ %20 ”替换空间来找到解决方案。
**
URL.replaceAll(" ","%20")
**