Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3696770
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:46:45+00:00 2026-05-19T04:46:45+00:00

I have a String Array which is contain dates that read from a CSV

  • 0

I have a String Array which is contain dates that read from a CSV file.
Now I want to count how many weekend days are in that array. But in my array there are some dates are duplicated. Here shows part of the data that is containing in my Array.

12/2/2010
12/3/2010
12/5/2010
12/10/2010
12/5/2010
12/13/2010
12/14/2010
12/12/2010

In this data set 12/5/2010 is Sunday (but there are two records) & 12/12/2010 is Saturday (has One record). In output, I want to print number of weekend days in this array using java. Compared to this example the Answer should be 2.

FileInputStream fis=new FileInputStream("c:/cdr2.csv");
InputStreamReader isr=new InputStreamReader(fis);
BufferedReader bf = new BufferedReader(isr);
while (bf.ready()) {
    String line = bf.readLine();
    String[] values=line.split(",");
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MM/d/yyyy");
    Date date = simpleDateFormat.parse(values[2]);
    Calendar calendar = Calendar.getInstance();
    calendar.setTime(date);
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T04:46:45+00:00Added an answer on May 19, 2026 at 4:46 am

    First, you need to write a method that determines if a given Date is a weekend or not:

    public static boolean isWeekend(Date date) {
      Calendar cal = Calendar.getInstance();
      cal.setTime(date);
      int dayOfWeek = cal.get(Calendar.DAY_OF_WEEK);
      return dayOfWeek == Calendar.SUNDAY || dayOfWeek == Calendar.SATURDAY;
    }
    

    Then, you need to define a DateFormat, so that you can parse a date String into a java.util.Date. Finally, you can use a Set to assure every weekend you find is not going to be duplicated:

    public static void main(String[] args) throws ParseException {
      DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
      String[] dates = { "12/2/2010", "12/3/2010", "12/5/2010", "12/10/2010", "12/5/2010", "12/13/2010", "12/14/2010", "12/12/2010" };
      Set<String> weekends = new HashSet<String>();
      for (String dt : dates) {
        Date date = dateFormat.parse(dt);
        if (isWeekend(date)) {
          weekends.add(dt);
        }
      }
      System.out.println("There are " + weekends.size() + " distinct weekends."); // 2
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string array which holds the name of 500 stocks. Now i
I have this string of numbers var array = 1,6,2,9,5 which is retrieved from
I have created a plist file which contain a single array which contains four
I have a List of objects which contain a string array as one of
Hi I have a table column in Oracle 10 which contain a string array
I have a string array selectCancel with setter and getter methods, which is a
I have a string say string s =C:\\Data , I have an array which
I have written an assembly in C# which returns a string array, the C#
I have this 4 Dimensional array to store String values which are used to
I have a array stored in a PHP file in which I am storing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.