2つの文字列Map<String, String> ldapContent = new HashMap<String, String>
を持つHashMap
があります。
Map
を外部ファイルに保存して、後で初期化せずにMap
を後で使用したい...
では、後で使用するためにMap
を保存する方法を教えてください。
HashMap
はSerializable
を実装するため、通常のシリアル化を使用してハッシュマップをファイルに書き込むことができます
Java-Serialization の例のリンクです
私が考えることができる最も簡単な解決策は、Propertiesクラスを使用することです。
マップの保存:
Map<String, String> ldapContent = new HashMap<String, String>();
Properties properties = new Properties();
for (Map.Entry<String,String> entry : ldapContent.entrySet()) {
properties.put(entry.getKey(), entry.getValue());
}
properties.store(new FileOutputStream("data.properties"), null);
地図の読み込み:
Map<String, String> ldapContent = new HashMap<String, String>();
Properties properties = new Properties();
properties.load(new FileInputStream("data.properties"));
for (String key : properties.stringPropertyNames()) {
ldapContent.put(key, properties.get(key).toString());
}
編集:
マップにプレーンテキスト値が含まれている場合、テキストエディターを使用してファイルデータを開くとそれらが表示されますが、マップをシリアル化する場合はそうではありません。
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("data.ser"));
out.writeObject(ldapContent);
out.close();
EDIT2:
サンプルを保存するためのforループ(OldCurmudgeonによって提案された)の代わりに:
properties.putAll(ldapContent);
ただし、ロードの例では、これが実行可能な最善の方法です。
ldapContent = new HashMap<Object, Object>(properties);
HashMap
はSerializable
インターフェイスを実装しているため、ObjectOutputStream
クラスを使用してMap
全体をファイルに書き込み、ObjectInputStream
を使用して再度読み取ることができます。クラス
ObjectOutStream
およびObjectInputStream
の使用法を説明する以下の簡単なコード
import Java.util.*;
import Java.io.*;
public class A{
HashMap<String,String> hm;
public A(){
hm=new HashMap<String,String>();
hm.put("1","A");
hm.put("2","B");
hm.put("3","C");
method1(hm);
}
public void method1(HashMap<String,String> map){
//write to file : "fileone"
try{
File fileOne=new File("fileone");
FileOutputStream fos=new FileOutputStream(fileOne);
ObjectOutputStream oos=new ObjectOutputStream(fos);
oos.writeObject(map);
oos.flush();
oos.close();
fos.close();
}catch(Exception e){}
//read from file
try{
File toRead=new File("fileone");
FileInputStream fis=new FileInputStream(toRead);
ObjectInputStream ois=new ObjectInputStream(fis);
HashMap<String,String> mapInFile=(HashMap<String,String>)ois.readObject();
ois.close();
fis.close();
//print All data in MAP
for(Map.Entry<String,String> m :mapInFile.entrySet()){
System.out.println(m.getKey()+" : "+m.getValue());
}
}catch(Exception e){}
}
public static void main(String args[]){
new A();
}
}
または、データをテキストとしてファイルに書き込みたい場合は、単にMap
を反復処理し、キーと値を1行ずつ書き込み、1行ずつ再度読み取り、HashMap
に追加します。
import Java.util.*;
import Java.io.*;
public class A{
HashMap<String,String> hm;
public A(){
hm=new HashMap<String,String>();
hm.put("1","A");
hm.put("2","B");
hm.put("3","C");
method2(hm);
}
public void method2(HashMap<String,String> map){
//write to file : "fileone"
try{
File fileTwo=new File("filetwo.txt");
FileOutputStream fos=new FileOutputStream(fileTwo);
PrintWriter pw=new PrintWriter(fos);
for(Map.Entry<String,String> m :map.entrySet()){
pw.println(m.getKey()+"="+m.getValue());
}
pw.flush();
pw.close();
fos.close();
}catch(Exception e){}
//read from file
try{
File toRead=new File("filetwo.txt");
FileInputStream fis=new FileInputStream(toRead);
Scanner sc=new Scanner(fis);
HashMap<String,String> mapInFile=new HashMap<String,String>();
//read data from file line by line:
String currentLine;
while(sc.hasNextLine()){
currentLine=sc.nextLine();
//now tokenize the currentLine:
StringTokenizer st=new StringTokenizer(currentLine,"=",false);
//put tokens ot currentLine in map
mapInFile.put(st.nextToken(),st.nextToken());
}
fis.close();
//print All data in MAP
for(Map.Entry<String,String> m :mapInFile.entrySet()){
System.out.println(m.getKey()+" : "+m.getValue());
}
}catch(Exception e){}
}
public static void main(String args[]){
new A();
}
}
注:上記のコードはこのタスクを実行する最速の方法ではないかもしれませんが、クラスのアプリケーションをいくつか表示したいです
ObjectOutputStream 、 ObjectInputStream 、 HashMap 、 Serializable 、 StringTokenizer を参照してください
ObjectOutputStreamのwriteObject
を使用して、オブジェクトをファイルに書き込むことができます