如何存储来自java.util.Scanner的数据; 如何接受处理时间的投入

我正在尝试使用扫描仪获取时间信息。 所以这是一个个人锻炼跟踪器,我可以插入完成某项锻炼所需的时间。

扫描仪提取的所有信息都需要存储在电子表格中。 我怎样才能做到这一点

完整的代码.http://ideone.com/wYgTc

import java.util.Scanner;

  // How to arrange the answers to the questions … only if answered “yes” if answered         //“no” insert a zero

class WorkOutTracker {public static void main(String [] args){

System.out.print(“你今天游泳了吗?”)

扫描仪myScanner =新扫描仪(System.in);

DYSwim = myScanner.nextLine();

if(DYSwim = =“yes”){

System.out.println(“你游了多少圈?”);

LapNum = myScanner.nextInt();

//如何扫描时间。

System.out.println(“你是否为自己计时?”);

DYTime = myScanner.nextLine();

if(DYTime = =“yes”){

System.out.println(“你游了多久?”);

SwimTime = myScanner.nextInt();


看起来你链接的代码也可以正常工作以解析秒...

至于电子表格,您可以使用此api与Excel电子表格交互:http://jexcelapi.sourceforge.net/

我之前使用过它,虽然它有点过时了,但应该适合您的使用。

链接地址: http://www.djcxy.com/p/96105.html

上一篇: How to store Data from java.util.Scanner ; How to accept input dealing with time

下一篇: Scanner cannot be resolved to a type