本文整理了Java中org.geoserver.util.IOUtils.createTempDirectory()
方法的一些代码示例,展示了IOUtils.createTempDirectory()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IOUtils.createTempDirectory()
方法的具体详情如下:
包路径:org.geoserver.util.IOUtils
类名称:IOUtils
方法名:createTempDirectory
[英]Creates a temporary directory whose name will start by prefix
Strategy is to leverage the system temp directory, then create a sub-directory.
[中]创建名称以前缀开头的临时目录
策略是利用系统临时目录,然后创建一个子目录。
代码示例来源:origin: org.geoserver.community/gs-jms-geoserver
/** Helper method that just creates a temporary directory using the provide prefix. */
private static File createTempDirectory(String prefix) {
try {
// creates a temporary directory using the provided prefix
return IOUtils.createTempDirectory(prefix + "-");
} catch (Exception exception) {
throw new RuntimeException("Error creating temporary directory.", exception);
}
}
代码示例来源:origin: org.geoserver.extension/gs-h2
@BeforeClass
public static void setUp() throws Throwable {
// create root tests directory
ROOT_DIRECTORY = IOUtils.createTempDirectory("h2-tests");
// create the test database
DATABASE_DIR = new File(ROOT_DIRECTORY, "testdb");
DATABASE_DIR.mkdirs();
}
代码示例来源:origin: org.geoserver.extension/gs-wps-core
@Override
public Object decode(InputStream input) throws Exception {
File tempDir = IOUtils.createTempDirectory("shpziptemp");
代码示例来源:origin: org.geoserver/gs-wfs
final File tempDir = IOUtils.createTempDirectory("shpziptemp");
ShapefileDumper dumper =
new ShapefileDumper(tempDir) {
内容来源于网络,如有侵权,请联系作者删除!