0

このプログラムでは、風袋 3 と風袋 4 の 2 日分が差し引かれます。風袋 3 (システムから) 当日の値 風袋 4 テキスト ファイル (要素 [3]) の値。 24 00:00:00 EET 2018)

package javaapplication3;        
import java.io.*;            `     `
import java.util.*;                  
import java.text.*;

public static void main(String[] args) throws ParseException, FileNotFoundException {
    private  static String tare5 = new String();
    static String tare2 = new String ();

    DateFormat dateFormat = new SimpleDateFormat(" dd MMM yyyy  ",Locale.ENGLISH );
    Calendar cal = Calendar.getInstance();
    Date tare4 =  new Date (); 
    tare5 = dateFormat.format(cal.getTime());
    Date  tare3 = dateFormat.parse(tare5);

    Scanner scanner;
    File Myfile =  new File("C:\\Users\\mido\\Documents\\NetBeansProjects\\JavaApplication3\\src\\javaapplication3\\products.txt");
    scanner = new Scanner (Myfile);


    while (scanner.hasNext()){

        String line = scanner.nextLine();
        StringTokenizer x = new StringTokenizer(line,"~");
        String [] element= new String [7]; 
        int counter = 0 ;

        while (x.hasMoreElements())
        {
            element[counter]=(String)x.nextElement();
            counter ++;

        }
        tare4 = dateFormat.parse(element[3]);

        if (tare4.getTime()>= tare3.getTime() )
        {
            System.out.println(element[1]+"is expired");
        }
        else {
            long def = tare3.getTime()- tare4.getTime();
            System.out.println(element[1]+"has"+def+"to expire");}
        }
   }
4

0 に答える 0