我一直在谷歌上搜索这个问题,因为这是我第一次使用arduino和android。我的问题是,如何将变量data
* String转换为int?我每次都得到NumberFormatException:
int pulse = Integer.ParseInt(data);
我的目标是能够从arduino获取数据并将其作为整数,以便我能够比较它。
附加: 变量“data”是脉冲率。我需要将它转换为int,这样我可以比较脉冲率是否正常时的值。 经过几个小时的搜索,我发现我试图转换为int的东西不是纯粹的字符串,因为它来自arduino,现在我的问题是如何将变量“data”变为整数。
这是我的代码:
public void run()
{
while(!Thread.currentThread().isInterrupted() && !stopWorker)
{
try
{
final int bytesAvailable = mmInputStream.available();
if(bytesAvailable > 0)
{
byte[] packetBytes = new byte[bytesAvailable];
mmInputStream.read(packetBytes);
for(i=0;i<bytesAvailable;i++)
{
byte b = packetBytes[i];
if(b == delimiter)
{
final byte[] encodedBytes = new byte[readBufferPosition];
System.arraycopy(readBuffer, 0, encodedBytes, 0, encodedBytes.length);
final String data = new String(encodedBytes, "US-ASCII");
readBufferPosition = 0;
handler.post(new Runnable()
{
public void run()
{
Intent i = new Intent(Bluetooth.this, Home.class);
i.putExtra("theBPM",data);
startActivity(i);
}
});
}
else
{
readBuffer[readBufferPosition++] = b;
}
}
}
}
catch (IOException ex)
{
stopWorker = true;
}
}
}
});
workerThread.start();
谢谢。
答案 0 :(得分:1)
我们假设问题是String to int并且您已经进入调试模式或发出一些Toast消息,表明您正在按预期获得字符串表示。
您可以尝试以下选项:
答案 1 :(得分:0)
尝试打印/记录/进行祝酒,以查看数据中的内容。仅当数据具有除数字以外的字符或者您在数据中具有双(十进制)值时,才会发生这种情况。为此,您可能需要使用 Double.parseDouble(data)。