私はこのサイトを初めて使用し、Javaの学習を始めたばかりです。グレゴリオ暦に数日追加しようとしていますが、機能しません。ここで...(上部のチャンクは無視してください)、下部に日付を追加するのは面倒です。
/*
* Author:Matt M
* Date:8.12.13
* Discription: When the user inputs the deadline, and the difficulity of the project,
* the program gives the date he should start working on it
*/
import Java.util.*;
public class DeadlinePlanner{
public static void main(String[] args)
{
//take information and restart questions if information is wrong
int month = 0, day = 0 ;
do
{
do
{
System.out.println("Input the month please");
month = (new Scanner(System.in).nextInt() - 1);
System.out.println("Input the day please");
day = (new Scanner(System.in).nextInt());
}
while (!(month <= 12) || !(month >= 0));
}
while (!(day <= 31) || !(month >= 0));
//Make new calender and initialize it
GregorianCalendar setup = new GregorianCalendar();
setup.set(2013, month, day);
System.out.println("The deadline is "+ setup.getTime());
//switch statement to give starting date
System.out.println("Is the project hard or easy?");
Scanner difficulity = new Scanner(System.in);
switch (difficulity.nextLine())
{
case "easy":
setup.add(day, -1);
System.out.print("The date you should start workinng on is ");
System.out.println(setup.getTime());
break;
case "hard":
setup.add(day, -10);
System.out.print("The date you should start workinng on is ");
System.out.println(setup.getTime());
break;
default:
System.out.println("Your answers to the questions are incorrect");
break;
}
}
}
これを読んでくれてありがとう!私はどんなフィードバックにもオープンです...
ここにはコードが多すぎます。ユーザーの操作が多すぎます。
簡単な方法で1つのことを実行し、それが正しく行われた後に作業を進めます。
これがあなたがそれをするかもしれない方法です:
public class DateUtils {
private DateUtils() {}
public static Date addDays(Date baseDate, int daysToAdd) {
Calendar calendar = Calendar.getInstance();
calendar.setTime(baseDate);
calendar.add(Calendar.DAY_OF_YEAR, daysToAdd);
return calendar.getTime();
}
}
このメソッドをテストして証明したら、残りのコードにそれを呼び出させることができます。
更新:4年後、JDK8から新しいJODAベースのタイムパッケージが提供されました。これらのクラスを使用する必要がありますnot JDK 1.0 Calendar
。
次のような行を変更する必要があります。
setup.add(day, -1);
setup.add(day, -10);
に
setup.add(GregorianCalendar.DAY_OF_MONTH, -1);
setup.add(GregorianCalendar.DAY_OF_MONTH, -10);
詳細については、 GregorianCalendar を参照してください。
グレゴリオ暦には、あなたが言っている場所で何が増えているかを伝えるために使用する必要がある独自の価値があります
setup.add(day, -1);
日にはグレゴリオ暦の値を使用する必要があります
setup.add(Calendar.DAY_OF_MONTH, -1);