提交 a8230bbd 编写于 作者: Z ZHAO Jian 提交者: elunez

java.io.FileNotFoundException: /tmpip2region.db (Permission denied) (#146)

* bug fix

java.io.FileNotFoundException: /tmpip2region.db (Permission denied)
上级 5693f178
......@@ -136,7 +136,7 @@ public class FileUtil extends cn.hutool.core.io.FileUtil {
* @throws Exception
*/
public static File inputStreamToFile(InputStream ins, String name) throws Exception{
File file = new File(System.getProperty("java.io.tmpdir") + name);
File file = new File(System.getProperty("java.io.tmpdir") + File.separator + name);
if (file.exists()) {
return file;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册