我知道如何将文本写入文件并将其存储在Java中,但我想知道是否有一种方法可以存储大量变量,这些变量可以在以后从文件中检索,并作为变量放回Java应用程序中。
我会存储数字和字符串,但它们是成组的。
感谢:)
Java可以像读取地图一样读取属性文件。这为您提供了一种使用密钥/值系统存储信息的简单方法。
结账http://download.oracle.com/javase/6/docs/api/java/util/Properties.html
使用XML!您将使变量可移植。甚至你的咖啡机也可以使用它们。
SAX解析器是用Java构建的。
下面是一个用于编写XML文件的Java代码片段:
public void saveToXML(String xml) {
Document dom;
Element e = null;
// get an instance of factory
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
try {
// using a factory get an instance of document builder
DocumentBuilder db = dbf.newDocumentBuilder();
// create an instance of DOM
dom = db.newDocument();
// create the root element
Element rootElement = dom.createElement("myparameters");
// create data elements and place them under root
e = dom.createElement("brightness");
e.appendChild(dom.createTextNode(brightness));
rootElement.appendChild(e);
下面是一个用于读取XML文件的Java片段:
public boolean loadFromXML(String xml) {
Document dom;
// get an instance of the factory
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
try {
// using factory get an instance of the document builder
DocumentBuilder db = dbf.newDocumentBuilder();
// parse using builder to get DOM representation of the XML file
dom = db.parse(xml);
Element doc = dom.getDocumentElement();
// get the data
brightness = getTextValue(brightness, doc, "brightness");
contrast = getTextValue(contrast, doc, "contrast");
最好的方法是创建一个XML文件。它可以将任何对象存储在任何类型的集合中。
我想XML是保存它并在以后检索它的最佳方式。