我有一些最终调用的代码 Font.createFont
。它在服务器上运行良好(centos 的东西......)但在我的 Ubuntu 机器上它因为里面的这个调用而死了Font.createFont
final File tFile = AccessController.doPrivileged(
new PrivilegedExceptionAction<File>() {
public File run() throws IOException {
return sun.misc.IOUtils.createTempFile("+~JF", ".tmp", null);
}
}
);
我的/tmp
目录是全世界可读/可写的。不知道为什么会这样。