出现乱码错误:
处理方案:
对文件路径中存在中文的,都要进行URLDecoder.decode(path,"UTF-8")编码转换
wordContent = URLEncoder.encode(filePath,"UTF-8"); //编码 wordContent = URLDecoder.decode(filePath,"UTF-8"); //解码