我正在使用Windows 7和python 2.7,我正在尝试将我的kivy应用程序与蓝牙连接,但我收到此错误消息。请解释。
*Traceback (most recent call last):
File "bluetooth.py", line 15, in <module>
BluetoothAdapter = autoclass('android.bluetooth.BluetoothAdapter')
File "build\bdist.win-amd64\egg\jnius\reflect.py", line 154, in autoclass
File "jnius\jnius_export_func.pxi", line 25, in jnius.find_javaclass (jnius\jnius.c:16263)
jnius.JavaException: Class not found 'android/bluetooth/BluetoothAdapter'*
答案 0 :(得分:1)
您展示的代码是您在Android上运行以访问BluetoothAdapter类的代码。 Windows没有这个(或任何其他Android API),所以它失败了。
如果你想在windows上使用蓝牙,找一个特定于windows平台的方法(这不太可能涉及pyjnius)。