ソリューションのプログラミングをさらに開始する前に解決したい、少し理論的な質問があります...
バックグラウンド。2 つ (またはそれ以上) の MS Access ファイルを比較する必要があります。
各ファイルには、他のファイルのいずれかにあるデータが含まれている必要があります。
JDBC で遭遇した「制限」と Access の結果セットへの接続 (前方スクロールのみ可能です!) により、結果セットの構造をモデル化する「Java オブジェクト」(クラス) を作成しました。
本質的に、結果セット内の単一のレコード行をモデル化するオブジェクトがあります (それを行セットと呼びましょう) resSet オブジェクトは行セットの「配列」を持ちます。
ただし、「速度を上げる」ために、キー列とインデックス列の値をキャッチし、これを関連するrowSetオブジェクトに「key_Index」のhashMapを作成します。
私の比較は、次のことを行います。
最初の resSet オブジェクトを (マスターとして使用するために) 取得し、これから個々の Key_Index ハッシュマップを収集します (それを「aKey」と呼びましょう....
この「aKey」オブジェクトを使用して、他の利用可能な resSet オブジェクトを検索し、「aKey」の値と一致する key_Index の値が含まれているオブジェクトがあるかどうかを確認します。
しかし、私はかなり厄介な考えを持っていました。
他の resSet オブジェクトの 1 つでコード resSet.get(aKey) を使用すると、「aKey」オブジェクトが明らかに同じオブジェクトではないため、問題が発生しますが、内容は同じ (つまり、同等) である必要があります。
質問を読んだときに、言葉遣いが不十分だと言わざるを得ません...だから、私が作成したクラスのコピーを含めると思います...
重要な部分:
members: challenge - 「結果セット」タイプのオブジェクトの arrayList。
メソッド: runChallenge()
package KWhite;
/**
* the RScomparator is designed for the instance of comparing a double entry database system, as
* often occurs in localy run medical trials data.
*
* The double entry is to ensure that there are no errors made during input, the entry is performed
* in separate independant instances. The RScolmparator object is specifically able to take any
* number of result sets as its input (ie queries from multiple independantly created databases)
*
* It should be recognised that this object should probably be called as part of a DBcomparator
* object.
*
*/
//imports here
//import of logger class and required dependencies...
import java.util.ArrayList;
import java.util.HashMap;
import org.apache.log4j.PropertyConfigurator;
import MrBlue.DB_Table;
import TawuaiLogger.tawuaiLogger;
public class RScomparator {
//Static variables
//the logger instance
private static final TawuaiLogger.tawuaiLogger errLog = new tawuaiLogger("RScomparator");
//class member variables
/** this is a selection of ResSet objects that are going to have thier data challenged */
private ArrayList<ResSet_KW> challenge;
/**the name of the current table being challenged*/
private String tableName;
/**a 'table' object for meta data reference purposes, this can be used for getting column types etc */
private DB_Table table;
//These are our report objects
/**a report array for challenge failures */
private ArrayList<report_KW> fail;
/**a report array for errors, ie no challenger able to be made, no equivalent value found */
private ArrayList<report_KW> errors;
/**a report array for the good values */
private ArrayList<report_KW> success;
/** this is either the main class or the constructor
*
* If it is a constructor rename to reflect the name of the class
* @param args
*/
public RScomparator(DB_Table t) //TODO add arguments as required
{
PropertyConfigurator.configure("Log4j.properties");
// TODO Auto-generated method stub
challenge = new ArrayList<ResSet_KW>();
//initialise our report objects for this challenge scenario
fail = new ArrayList<report_KW>();
errors = new ArrayList<report_KW>();
success = new ArrayList<report_KW>();
table = t;
tableName = t.getTblName();
}
//class methods go here
/**
* add a result set object into this comparator
*
* @param r the result set object being inserted into this challenge.
*
*/
public void addChallenger(ResSet_KW r)
{
this.challenge.add(r);
}
/**
* this runs the comparison process...
* Although no details in of itself are returned it calls other methods that do return a value
*
*/
public void runChallenge()
{
//TODO finish this method, creating a report object on the way
//these are the 2 result set objects that will be compared
ResSet_KW gold = new ResSet_KW ();
ResSet_KW silver = new ResSet_KW ();
//ensure the challenger list has objects in it.
if(challenge.size() < 2)
{
//it must have 2 objects..
errLog.add(3, "there are no results available for comparison of table " + this.tableName);
//either way we should create report object.
this.errors.add( new report_KW(tableName));
//break out of the method.
return;
}
//get the first row of data
gold = challenge.get(0);//the first result set.
//for each column in the result set, perform a search for the same key in the others..
for(HashMap<String, String> c : gold.getRS().keySet())
{//c is the key value in the map
//cycle over the challenge object
for (int i=1; i<challenge.size(); i++)//we don't want to use the first element, so start from 1 not zero
{
silver = challenge.get(i);
if (silver.hasKey(c))
{
//a temp object for meta data referencing
//only get the actual result values if there is a match
Column_KW a = gold.getRS().get(c);
Column_KW b = silver.getRS().get(c);
//make the comparison
a.compareTo(b, this.table);
//get the reports from the comparison
for(report_KW k :a.getFailure())
{
this.fail.add(k);
}
for(report_KW k :a.getPassed())
{
this.success.add(k);
}
for(report_KW k :a.getPassed())
{
this.errors.add(k);
}
}
else
{
break;//return to the next item in the for loop
}
}
}
}
/**
*a helper method to create the error message creator
*@ param m the extra message if any,
*@return s the full message
*/
private String getErrMessage(String m) {
//the third element in the current stact trace should be the calling method
StackTraceElement caller = Thread.currentThread().getStackTrace()[3];
String s = m + "\ncalled from line " + caller.getLineNumber()
+ "\nmethod: " + this.getClass() + "." + caller.getMethodName();
return s;
}
}//end class
ps。私のコードに関するコメント、または歓迎するその他のコメント
前もって感謝します
デビッド
編集:私はこの質問を見つけました.Javaのネストされたマップまたは結合されたキーは、これが私の解決策になり、「カスタム」key_Indexオブジェクトを作成し、それに対してhashcode()およびequalsオブジェクトを定義します. しかし、私はすでに key_index オブジェクトに「hashMap」を使用しています。