31 lines
730 B
Java
31 lines
730 B
Java
package manage.FITBITData;
|
|
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
import java.util.Map;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
public class Steps {
|
|
|
|
private int steps=0;
|
|
|
|
@JsonProperty("activities-steps")
|
|
public void setSteps(Map<String, String>[] array) {
|
|
SimpleDateFormat sdfDate = new SimpleDateFormat("yyyy-MM-dd");
|
|
Date now = new Date();
|
|
String strDate = sdfDate.format(now);
|
|
|
|
for(Map<String, String> map : array)
|
|
if(map.get("dateTime").equals(strDate))
|
|
steps = Integer.parseInt(map.get("value"))+1;
|
|
}
|
|
|
|
public int getSteps() {
|
|
return steps;
|
|
}
|
|
|
|
}
|