本文整理了Java中cn.hutool.core.io.FileUtil.createTempFile()
方法的一些代码示例,展示了FileUtil.createTempFile()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.createTempFile()
方法的具体详情如下:
包路径:cn.hutool.core.io.FileUtil
类名称:FileUtil
方法名:createTempFile
[英]创建临时文件
创建后的文件名为 prefix[Randon].tmp
[中]
代码示例来源:origin: looly/hutool
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir) throws IORuntimeException {
return createTempFile("hutool", null, dir, true);
}
代码示例来源:origin: looly/hutool
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir) throws IORuntimeException {
return createTempFile("hutool", null, dir, true);
}
代码示例来源:origin: looly/hutool
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @param isReCreat 是否重新创建文件(删掉原来的,创建新的)
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir, boolean isReCreat) throws IORuntimeException {
return createTempFile("hutool", null, dir, isReCreat);
}
代码示例来源:origin: looly/hutool
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @param isReCreat 是否重新创建文件(删掉原来的,创建新的)
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir, boolean isReCreat) throws IORuntimeException {
return createTempFile("hutool", null, dir, isReCreat);
}
代码示例来源:origin: looly/hutool
tempFile = FileUtil.createTempFile(TMP_FILE_PREFIX, TMP_FILE_SUFFIX, FileUtil.touch(setting.tmpUploadPath), false);
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(tempFile));
if (data != null) {
代码示例来源:origin: looly/hutool
tempFile = FileUtil.createTempFile(TMP_FILE_PREFIX, TMP_FILE_SUFFIX, FileUtil.touch(setting.tmpUploadPath), false);
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(tempFile));
if (data != null) {
代码示例来源:origin: cn.hutool/hutool-all
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir) throws IORuntimeException {
return createTempFile("hutool", null, dir, true);
}
代码示例来源:origin: cn.hutool/hutool-all
/**
* 创建临时文件<br>
* 创建后的文件名为 prefix[Randon].tmp
*
* @param dir 临时文件创建的所在目录
* @param isReCreat 是否重新创建文件(删掉原来的,创建新的)
* @return 临时文件
* @throws IORuntimeException IO异常
*/
public static File createTempFile(File dir, boolean isReCreat) throws IORuntimeException {
return createTempFile("hutool", null, dir, isReCreat);
}
代码示例来源:origin: cn.hutool/hutool-all
tempFile = FileUtil.createTempFile(TMP_FILE_PREFIX, TMP_FILE_SUFFIX, FileUtil.touch(setting.tmpUploadPath), false);
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(tempFile));
if (data != null) {
内容来源于网络,如有侵权,请联系作者删除!