下面给出的是我的arduino脚本的输出。我正在使用Java(Netbeans IDE)来计算下面一组值的步数。我将这组值存储在缓冲区中。我想使用java只提取时间和陀螺仪x,y,z值。我记得有一种方法可以指向“时间”并添加索引号。但我对此不太确定。我怎么能这样做?请帮忙
存储在缓冲区中的值:
左腿 时间(分钟):676589
陀螺仪:-1.20,-1.38,-3.05
加速度计:-0.03,-0.12,-1.05
磁强计:0.35,0.32,-0.26
右腿
时间(毫秒):222875
陀螺仪:1.53,-0.46,-2.21
加速度计:0.29,-0.69,0.63
磁强计:0.34,-0.31,-0.01
左腿
时间(毫秒):676710
陀螺仪:-1.37,-1.22,-3.15
加速度计:-0.03,-0.12,-1.05
磁强计:0.35,0.32,-0.26 ..............................................
答案 0 :(得分:0)
您可以拆分每个String并提取所需的值:
String firstRow = "Left Leg Time(ms): 676589";
String secondRow = "Gyroscope : -1.20 , -1.38 , -3.05";
String[] firstRowParts = firstRow.split(" ");
int time = Integer.parseInt(firstRowParts[3]); // 676589
String[] secondRowParts = secondRow.split(" ");
int x = Integer.parseInt(secondRowParts[2]); // -1.20
int y = Integer.parseInt(secondRowParts[4]); // -1.38
int z = Integer.parseInt(secondRowParts[6]); // -3.05
答案 1 :(得分:0)
为了使上述解决方案更加通用, 我会做以下事情:
int time = 0;
int x = 0;
int y = 0;
int z = 0;
String[] lines = buffer.split("\n")
//you will have the lines here, assuming that you have the Buffer values in a string called buffer
for(String string in lines){
if (string.contains("Time")){
String[] values = string.split(" ");
time = Integer.parseInt(values[1]);
}
if (string.contains("Gyroscope")){
String[] values = string.split(" ");
x = Integer.parseInt(values[1]);
y = Integer.parseInt(values[2]);
z = Integer.parseInt(values[3]);
}
}
我没有测试过,所以我希望其中没有拼写错误...