我在比较两个字符串时遇到问题,一个来自 NFC 标签,另一个来自 xml 文件。我用来编写标签的代码如下所示:
private NdefMessage getTagAsNdef(Card new_card)
{
boolean addAAR = false;
String unique_id = new_card.getCardId();
byte[] bytes = unique_id.getBytes(Charset.forName("UTF-8"));
byte[] payload = new byte[bytes.length + 1];
NdefRecord rtdUriRecord = new NdefRecord(
NdefRecord.TNF_WELL_KNOWN, NdefRecord.RTD_TEXT, new byte[0], payload);
if(addAAR)
{
NdefRecord new_record = null;
try
{
new_record = createRecord(new_card);
} catch (UnsupportedEncodingException e)
{
e.printStackTrace();
}
return new NdefMessage(new NdefRecord[] {rtdUriRecord, new_record});
} else
{
return new NdefMessage(new NdefRecord[]
{
rtdUriRecord});
}
}
我尝试按照此处找到的建议删除通常在有效负载中设置的所有语言和编码信息: 比较从 NFC 标签读取 的数据我在读取标签后在此处进行的比较总是失败,尽管日志中打印的字符串值是相同的:
looking at this_card_id -6465415649291849135
compare to tag_id -6465415649291849135
我得到了字符串的长度来显示问题:
looking at this_card_id 20
compare to tag_id 21
所以标签 id 有一个我一直无法摆脱的隐藏字符。这是比较的代码:
private void associateWithCardsFile(String tag_id)
{
String method = "associateWithCardsFile";
Log.i(DEBUG_TAG, method+" tag_id "+tag_id);
tag_id.trim();
boolean found = false;
Enumeration e = cards.keys();
Log.i(DEBUG_TAG, method+" cards "+cards.size());
while (e.hasMoreElements())
{
String this_card_id = (String)e.nextElement();
this_card_id.trim();
Log.i(DEBUG_TAG, method+" looking at this_card_id "+this_card_id.length());
Log.i(DEBUG_TAG, method+" compare to tag_id "+tag_id.length());
String card_id_str = UtilityTo.encodeThisString(this_card_id, "UTF-8");
String tag_id_str = UtilityTo.encodeThisString(tag_id, "UTF-8");
if (card_id_str.equals(tag_id_str))
{
Card matching_card = cards.get(this_card_id);
String word = UtilityTo.getWord(matching_card);
Toast.makeText(this, word, Toast.LENGTH_LONG ).show();
Log.i(DEBUG_TAG, method+" 1 match"+matching_card.getText()+" "+matching_card.getDefinition()+" "+matching_card.getWordType());
turn_cards.add(matching_card);
found = true;
showCards();
break;
}
}
if (!found)
{
Toast.makeText(this, "Not a game card!", Toast.LENGTH_LONG ).show();
Log.i(DEBUG_TAG, method+" card not found");
}
}
在 UtilityTo 类中,我有一个非常适合使用外语的方法。
public static String encodeThisString(String original_value, String encoding)
{
try
{
byte[] utf8Bytes = original_value.getBytes(encoding);
String new_value = new String(utf8Bytes, encoding);
return new_value;
} catch (UnsupportedEncodingException e)
{
e.printStackTrace();
return null;
} catch (java.lang.NullPointerException n)
{
n.printStackTrace();
return null;
}
}
我还尝试了 StackOverflow 的一些建议,如下所示: tag_id_str = new String(tag_id.getBytes("UTF-8"), "ascii") 无济于事。
有人可以解释如何编写标签以便没有隐藏字符并且基本的字符串比较将起作用,或者如何修改标签中的字符串使其等同于具有相同数字的字符串。谢谢。
ps 这是我在写完这篇文章后开始使用的 Android Developer NFC Basics 中的 write 方法。它会导致与上述相同的问题:tag_id 比 xml 文件中的 card_id 长 1 个字符。
public NdefRecord createRecord(String payload)
{
String language = "en";
boolean encodeInUtf8 = true;
byte[] langBytes = language.getBytes(Charset.forName("US-ASCII"));
Charset utfEncoding = encodeInUtf8 ? Charset.forName("UTF-8") : Charset.forName("UTF-16");
byte[] textBytes = payload.getBytes(utfEncoding);
int utfBit = encodeInUtf8 ? 0 : (1 << 7);
char status = (char) (utfBit + langBytes.length);
byte[] data = new byte[1 + langBytes.length + textBytes.length];
data[0] = (byte) status;
System.arraycopy(langBytes, 0, data, 1, langBytes.length);
System.arraycopy(textBytes, 0, data, 1 + langBytes.length, textBytes.length);
NdefRecord record = new NdefRecord(NdefRecord.TNF_WELL_KNOWN,
NdefRecord.RTD_TEXT, new byte[0], data);
return record;
}