我有一个文件,我用来保存程序执行时需要的系统信息。 程序将从中读取并定期写入。我该怎么做呢?在其他问题中,我遇到路径问题
示例
如果将应用程序部署为runnable jar
,如何读取/写入此属性文件答案 0 :(得分:8)
查看http://docs.oracle.com/javase/6/docs/api/java/util/Properties.html
您可以利用此类在属性/配置文件中使用key = value对
问题的第二部分,如何构建一个可运行的jar。我和maven一起做,看看这个:
How can I create an executable JAR with dependencies using Maven?
和此:
http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
我发现你并没有使用maven完全建立你的项目
答案 1 :(得分:2)
您无法写入作为ZIP文件一部分存在的文件...它不作为文件系统上的文件存在。
考虑了首选项API?
答案 2 :(得分:0)
要从文件中读取,您可以使用扫描仪声明文件阅读器
Scanner diskReader = new Scanner(new File("myProp.properties"));
之后例如,如果要从属性文件中读取布尔值,请使用
boolean Example = diskReader.nextBoolean();
如果你不想写一个文件,它会有点复杂,但我就是这样做的:
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Random;
import java.util.Scanner;
public class UpdateAFile {
static Random random = new Random();
static int numberValue = random.nextInt(100);
public static void main(String[] args) {
File file = new File("myFile.txt");
BufferedWriter writer = null;
Scanner diskScanner = null;
try {
writer = new BufferedWriter(new FileWriter(file, true));
} catch (IOException e) {
e.printStackTrace();
}
try {
diskScanner = new Scanner(file);
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
appendTo(writer, Integer.valueOf(numberValue).toString());
int otherValue = diskScanner.nextInt();
appendTo(writer, Integer.valueOf(otherValue + 10).toString());
int yetAnotherValue = diskScanner.nextInt();
appendTo(writer, Integer.valueOf(yetAnotherValue * 10).toString());
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
static void appendTo(BufferedWriter writer, String string) {
try {
writer.write(string);
writer.newLine();
writer.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}
然后通过以下方式写入文件:
diskWriter.write("BlahBlahBlah");