问题遇到的现象和发生背景 写一个下载txt的功能,下载的文件内容是空的,看日志发现是路径有一个拼接的分隔符少了
问题相关代码,请勿粘贴截图
```java
String filename = encodingFilename(fileName);
File file = new File(filePath+"/"+filename);
outSTr = new FileOutputStream(file);
Buff = new BufferedOutputStream(outSTr);