CPSC 225 Intermediate Programming Spring 2025

Lab 6: Streams

Due: Thu Apr 3 at the start of lab

Introduction

This lab deals with Java's stream classes.

About Due Dates

Labs are due at the start of lab on the date listed. It's fine to hand in your lab right at the start of lab, but the lab period is for starting on the new lab, not finishing the previous one.

To be eligible for revise-and-resubmit, you must turn in something by the due date. Late work and extensions are generally not accepted/granted; see the posted late policy for more information.

About Collaboration and Getting Help

You may work with a partner if you wish. Both partners must actively contribute to the solution! You only need one handin for the group — be sure to put both teammates' names in every file.

Otherwise you may get help but you may not use other resources (friends, neighbors, websites, ChatGPT, etc) to produce answers. See the posted policy on academic integrity for more information.

Handin

To hand in your work:


Technical Info

Working With Streams

Recall from class that there are four steps to working with streams:

Review the slides from Monday's class (posted on the schedule page) for an overview of the common stream classes and their primary methods and see the posted StreamsDemo example for an example of usage. For more information on specific streams classes and methods, such as to find out what happens when end-of-stream is reached, google

java 17 classname
to find the API documentation for the class classname. (Use the actual class name you are interested in, not the word "classname".)

Always remember to flush() an output stream or writer after you write to it — this writes out anything that might have been buffered. You don't need to flush() after every individual thing that is written, but flush() after writing a batch of things if you aren't going to write again for a while.

Commandline Arguments

Both of the programs you'll write take their input from commandline arguments rather than reading input from the user. Within the program, access commandline arguments using the args array passed to main — don't prompt the user for anything.

When a program is run from the command line, the values for the commandline arguments are specifed as part of the command:

java Grep the -

would run the Java program Grep with the commandline arguments the -.

To specify the commandline arguments to use when you run a program within Eclipse:

Repeat the process to change the values, otherwise the program will be run with the same arguments every time.


Exercises

Note: Do not use Scanner for any of these exercises. The goal is to work directly with streams!

Setup

#1: Grep

grep is a commandline Unix tool for searching files for a particular string or pattern; it prints the lines of the file matching the search pattern. Write a program named Grep which works like a simple version of the Unix grep:

To test the program with a file, you can use your Grep.java file (you'll need to use src/Grep.java for the filename to reflect the fact that it is in the src subdirectory of your project) or you can create a new text file in Eclipse to use (put any such files at the top level of your project directory, not in src).

#2: Copy

Write a program Copy which copies from the input (which can be standard input, a URL, or a file) to the output (which can be standard output or a file). Specifically:

Hint: you can streamline the code in main and avoid unnecessary repetition by declaring variables for the input and output streams (what types?) and initializing them separately based on the commandline parameters. Once both are properly initialized, call copy to do the copy.

If You Have Time (Optional)

(This section is optional — you are encouraged to work on it during lab if you finish the other exercises or for additional practice after lab. It isn't a required part of the lab.)