我正在从属性文件中读取值,如下所示:
public class Backup {
public static void main(String[] args) {
Properties prop = new Properties();
try{
//load properties file for reading
prop.load(new FileInputStream("src/com/db_backup/db-backup_config.properties"));
String password = prop.getProperty("db.password");
String port = prop.getProperty("db.port");
String name = prop.getProperty("db.name");
String userid = prop.getProperty("db.userid");
String tables = prop.getProperty("db.tables");
String host = prop.getProperty("db.host");
} catch (IOException ex) {
ex.printStackTrace();
}
System.out.println();
}
}
我想创建一个名称存储在字符串userid中的目录。我怎么能这样做?这也是读取属性文件的最佳方式吗?
答案 0 :(得分:1)
您可以使用Java创建目录 -
File file = new File("C:\\dir");
if (!file.exists()) {
if (file.mkdir()) {
// success
} else {
// failure
}
}
关于阅读属性,通常按照你的方式去做。
答案 1 :(得分:0)
为了创建一个目录,你可以使用userid String创建一个文件对象,如:
File f = new File(userid);
现在你要创建一个目录,如果它不存在。
if(!f.exists()) {
f.mkdir();
}
答案 2 :(得分:0)
如果我理解您的问题,您可以使用File#mkdir()
之类的,
File f = new File(userid);
if (f.exists()) {
if (f.isDirectory()) {
System.out.println(f.getPath() + " already exists");
} else {
System.out.println(f.getPath() + " (non-directory) already exists");
}
} else {
if (f.mkdir()) {
System.out.println(f.getPath() + " created");
} else {
System.out.println(f.getPath() + " not created");
}
}
答案 3 :(得分:0)
我继续摆弄,并且能够做到:
File theDir = new File(host);
if(!theDir.exists()) {
System.out.println("Creating Directory: " + host);
boolean result = false;
try{
theDir.mkdir();
result = true;
} catch (SecurityException se){
//handle
}
if(result){
System.out.println("DIR created");
}
}
} catch (IOException ex) {
ex.printStackTrace();
}
感谢那些回复的人。