please refer this file for extraction :
Hi , I am trying to extract files from ZIP which contains ¥ [YEN SIGN] on Linux machine . surprisingly , child files contains ¥ are replaced by [space]/[square] . Referred example : https://gist.github.com/borisbrodski/6120309 I had tried possible approached to change character BY : if(path.contains("")){ path = path.replaceAll("", "¥"); } and try { byte[] charset = path.getBytes("UTF-8"); path = new String(charset, "UTF-8"); }catch (UnsupportedEncodingException e1) { throw new SevenZipException("Error...