1

How to run apache common VFS resolovefile on my file with % character in the name ?

org.apache.commons.vfs.FileSystemException: Invalid URI escape sequence "%FILENAME"

Regards,

G Samrat

Samrat
  • 367
  • 2
  • 4
  • 21

1 Answers1

1

Percent is an escape character in URIs so it must itself be escaped as %25.

Ian Roberts
  • 120,891
  • 16
  • 170
  • 183