Cuando se sube un documento y el nombre de este lleva acentos, la forma en que se logra que se vea bien por pantalla, como debe ser es:
String nombre=new String(inputFile.getFileInfo ().getFileName ().getBytes("ISO-8859-1"),"UTF-8");
tomado de :http://www.icesoft.org/JForum/posts/list/9501.page#sthash.qV4gFNbC.dpbs
pd.Al subir el documento al servidor, lo subirá con los caracteres especiales no con los de acentuación
String nombre=new String(inputFile.getFileInfo ().getFileName ().getBytes("ISO-8859-1"),"UTF-8");
tomado de :http://www.icesoft.org/JForum/posts/list/9501.page#sthash.qV4gFNbC.dpbs
pd.Al subir el documento al servidor, lo subirá con los caracteres especiales no con los de acentuación
String
fileName = new String(inputFile.getFileInfo ().getFileName
().getBytes("ISO-8859-1"),"UTF-8"); - See more at:
http://www.icesoft.org/JForum/posts/list/9501.page#sthash.qV4gFNbC.dpuf
String
fileName = new String(inputFile.getFileInfo ().getFileName
().getBytes("ISO-8859-1"),"UTF-8"); - See more at:
http://www.icesoft.org/JForum/posts/list/9501.page#sthash.qV4gFNbC.dpuf