I have an object tag that I'm using its data attribute to call a servlet like the code bellow. I'm passing a parameter to this url . in case the value of this parameter is not english > arabic for example. then when I get this parameter value in the specified servlet > its value looks something like this "يجب التØÙ‚Ù‚ من.pdf"
I tried to add some other query string parameter like &&useUnicode=yes&&characterEncoding=UTF-8 to the url but with no luck. I also tried to use some code like request.setCharacterEncoding("UTF-8"); to the servlet but with no luck too.
this is how my code look like :
<object data="servletName.ex?fileName=${fileNameValue}">click</object>
I want to get the arabic value as it is when i get the value of the file name parameter.