我一直在尝试创建一个类,它将遍历一个文件,并根据它找到的值创建一个HashMap,并且还可以将HashMap编写到同一个文件中,并将更改的值与新的和已存在的值合并。将文件读入HashMap是有效的,但是,当我尝试将所述HashMap写回具有不同值和键的文件时,该文件不会改变。 为了澄清,我使用的是UNIX风格的系统:Ubuntu 14.10
public class FConfig {
public FConfig( String pathToFile ) throws IOException {
config = new File( pathToFile );
if( !config.exists() ) {
config.createNewFile();
}
}
public FConfig( File file ) throws IOException {
if( !file.isFile() ) {
throw new IllegalArgumentException();
}
config = new File( file.getAbsolutePath() );
if( !config.exists() ) {
config.createNewFile();
}
}
private final File config;
private BufferedReader fileIn;
private BufferedWriter fileOut;
public HashMap<String, String> loadAllProperties() throws IOException {
fileIn = new BufferedReader( new FileReader( config ) );
config.setReadable( true );
HashMap<String, String> props = new HashMap<>();
String line;
while( ( line = fileIn.readLine() ) != null ) {
if( line.contains( "=" ) ) {
props.put( line.split( "=" )[ 0 ], line.split( "=" )[ 1 ] );
}
}
return props;
}
public void writeAllProperties( HashMap<String, String> newProps ) throws IOException {
fileOut = new BufferedWriter( new FileWriter( config ) );
HashMap<String, String> props = loadAllProperties();
props.putAll( newProps );
config.delete();
config.createNewFile();
config.setWritable( true );
System.out.println( config.canWrite() );
for( Entry<String, String> entry : props.entrySet() ) {
System.out.println( entry.getKey() + "=" + entry.getValue() );
fileOut.write( String.format( "%1$s=%2$s", entry.getKey(), entry.getValue() ) );
}
fileOut.close();
}
}
我正在调用方法
FConfig c = new FConfig( new File( System.getProperty( "user.home" ), "fConfig.cfg" ).getAbsolutePath() );
HashMap<String, String> props = new HashMap<>();
props.put( "a", "value0" );
props.put( "c", "value1" );
props.put( "b", "value2" );
for( Entry<String, String> e : c.loadAllProperties().entrySet() ) {
System.out.println( e.getKey() + ":" + e.getValue() );
}
try {
c.writeAllProperties( props );
} catch( Exception e ) {
e.printStackTrace();
}
使用GEdit我可以告诉文件正在被修改,但文件中没有任何实际的变化,我确保文件是可写的和可读的。我真的很困惑,为什么会发生这种情况,因为甚至没有抛出异常。
答案 0 :(得分:-1)
更改命令的顺序。在创建后,在文件上创建FileWriter
。
public void writeAllProperties( HashMap<String, String> newProps ) throws IOException {
// fileOut = new BufferedWriter( new FileWriter( config ) );
HashMap<String, String> props = loadAllProperties();
props.putAll( newProps );
config.delete();
config.createNewFile();
config.setWritable( true );
// You just created a new file.
fileOut = new BufferedWriter( new FileWriter( config ) );
此外,如果您使用的是Java 7+,我建议您利用try-with-resources
Statement到close()
(如果您不是,那么您应该致电{{1在close()
块中)
finally
最后,您的FileWriter(File)
构造函数可以保证创建一个新文件(因为您没有传入追加)。因此,你应该使用像
public void writeAllProperties(HashMap<String, String> newProps)
throws IOException {
// fileOut = new BufferedWriter(new FileWriter(config));
HashMap<String, String> props = loadAllProperties();
props.putAll(newProps);
config.delete();
config.createNewFile();
config.setWritable(true);
try (BufferedWriter fileOut = new BufferedWriter(new FileWriter(config))) {
System.out.println(config.canWrite());
for (Entry<String, String> entry : props.entrySet()) {
System.out.println(entry.getKey() + "=" + entry.getValue());
fileOut.write(String.format("%1$s=%2$s", entry.getKey(),
entry.getValue()));
}
}
}