I need to use as PathParam the path of a file, how can I do? Should I use URLEncode e URLDecode? Can someone give me an example?
The structure of my ws is:
@Path("/{filePath}")
public Response convert(@PathParam("filePath") String filePath) throws Throwable
{
..
}
Thanks in advance