在我的 Access db 表中,我有一个包含字符串的cmt_data
列。例如:
Check in the packet TM(12,9) MRSS0319 'Monitoring List Report'.
我还有一个List<String>
,如MRSS0319
,TRPP3006
等。我想做的是在我的List<String>
和表列之间执行子字符串匹配,但我不太清楚怎么做,因为 Jackcess 提供的示例相当简单。我在这里找到的一个例子显示:
Column col = table.getColumn("town");
cursor.beforeFirst();
while(cursor.moveToNextRow()) {
if(cursor.currentRowMatches(columnPattern, valuePattern)) {
// handle matching row here
}
}
该方法cursor.currentRowMatches(columnPattern, valuePattern)
看起来可能有用的地方。但是,根据文档,该方法似乎只执行字符串相等匹配,所以现在我有点死胡同了。
感谢您的帮助。
您可以创建一个小方法来检查匹配项的cmt_data
值:
public static void main(String[] args) {
String dbPath = "C:/Users/Public/JackcessTest.accdb";
try (Database db = DatabaseBuilder.open(new File(dbPath))) {
Table table = db.getTable("cmt_table");
Cursor cursor = table.getDefaultCursor();
cursor.beforeFirst();
while (cursor.moveToNextRow()) {
Row row = cursor.getCurrentRow();
if (stringContainsSpecialValue(row.getString("cmt_data"))) {
// handle matching row here
System.out.println(row);
}
}
} catch (Exception e) {
e.printStackTrace(System.err);
}
}
private static boolean stringContainsSpecialValue(String str) {
boolean rtn = false;
List<String> specialValues = Arrays.asList("MRSS0319", "TRPP3006");
for (String val : specialValues) {
if (str.contains(val)) {
rtn = true;
break;
}
}
return rtn;
}
您可能还可以为光标创建自定义列匹配器,但这可能有点矫枉过正。