我正在尝试使用NdefRecord / NdefMessage编写NFC标签。

byte prefix = 0x04; // https://
byte[] uriBytes = "whatever.anywhere.com".getBytes();
byte[] recordBytes = new byte[uriBytes.length + 1];
recordBytes[0] = prefix;
System.arraycopy(uriBytes, 0, recordBytes, 1, uriBytes.length);

NdefRecord record = new NdefRecord(
    NdefRecord.TNF_WELL_KNOWN,
    NdefRecord.RTD_URI,
    null,
    recordBytes);


这是我创建NdefRecord的方式,由于兼容性问题,我无法使用createUri()(由于API14可用,因此createUri()可用,我需要与API11兼容...)

它在Lollipop(在5.0.2上测试)和KitKat(在4.4.3上测试)上都非常有效。

我的一个用户在创建NdefRecord时崩溃了:

NdefRecord record = new NdefRecord(
    NdefRecord.TNF_WELL_KNOWN,
    NdefRecord.RTD_URI,
    null,
    recordBytes);


他使用的是ICS 4.0.2,我无法真正调试此问题,因为我没有可用的此类电话,也无法使用AVD模拟此问题。

有人看到我的工作有问题吗?还是有另一种/更好的方法呢?

编辑:
这是与此错误相关的堆栈跟踪

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.your.application/com.your.application.NFCWriter}: java.lang.IllegalArgumentException: Illegal null argument
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1967)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1992)
        at android.app.ActivityThread.access$600(ActivityThread.java:127)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1158)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loop(Looper.java:137)
        at android.app.ActivityThread.main(ActivityThread.java:4448)
        at java.lang.reflect.Method.invokeNative(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:511)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:823)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:590)
        at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.IllegalArgumentException: Illegal null argument
        at android.nfc.NdefRecord.<init>(NdefRecord.java:242)
        at android.nfc.NdefRecord.<init>(NdefRecord.java:233)
        at com.your.application.NFCWriter.onCreate(Unknown Source)
        at android.app.Activity.performCreate(Activity.java:4465)
        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1931)
        ... 11 more

最佳答案

我想我找到了答案。

即使API文档说将null用作typeidpayload是可以的,但事实并非如此。 ->
API Reference

这仅适用于Android 4.1.1,对于那些对此感兴趣的人是源代码:

NdefRecord Constructor (4.1.1_r1)
nullEMPTY_BYTE_ARRAY替换(尽管是new byte[0]

NdefRecord Constructor (4.0.4_r2.1)中使用null作为参数时抛出IllegalArgumentException

因此,如果要向后兼容并构造NdefRecord,则不要将null作为参数提供,请使用new byte[0] INSTEAD

byte prefix = 0x04; // https://
byte[] uriBytes = "whatever.anywhere.com".getBytes();
byte[] recordBytes = new byte[uriBytes.length + 1];
recordBytes[0] = prefix;
System.arraycopy(uriBytes, 0, recordBytes, 1, uriBytes.length);

NdefRecord record = new NdefRecord(
    NdefRecord.TNF_WELL_KNOWN,
    NdefRecord.RTD_URI,
    new byte[0],
    recordBytes);


就是这样

感谢@ michael-roland提供UncaughtExceptionHandler上的线索,它有所帮助。

08-26 07:15