摘要:
有时候删除文件会说该文件正在使用中,导致文件不能删除。但是相关的流都已经关闭,这个时候建议采取以下方法。/** * 删除单个文件 * @param sPath 被删除文件的文件名的绝对路径 * @throws IOException */public void deleteFile(String sPath) throws IOException { File file = new File(sPath); // 路径为文件且不为空则进行删除 if (file.isFile() && file.exists()) { System.gc();//启动jvm垃圾回收 file.d 阅读全文
摘要:
"charsets.jar" was missing from the JVM's lib directory.jvm 默认的编码方式好像是utf-8,如果你window使用的是gbk,就可能会抱Charset 0x0408D00000/MS936 is not supported by the JVM 这个错误解决办法:把jdk下的jre下的lib中的charsets.pack 转为charsets.jarshell 命令 :unpack200 charsets.pack charsets.jar 阅读全文