Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Problem Description ASU Home My ASU College In this lab you will read in String data from a file and store them in an array.

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Problem Description ASU Home My ASU College In this lab you will read in String data from a file and store them in an array. Step 1: Getting Started Create a new .java file named Lab12.java. At the beginning of this file, include your assignment documentation code block. After the documentation block, you will need several import statements. import java.util.Scanner; import java.io. BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; Next, declare the Lab12 class and define the main function. public class Lab12 { public static void main (String [] args) { Step 2: Declaring Variables For this section of the lab, you will need to declare 1 local variable: a String that we will use to store the data read from a file. Declare this variable inside of the main function. 11 A String for the strings that we will read from file. // --> Step 3: Declare the Array ASU Home My ASU College Make an 2D array with 12 elements (4 rows and 3 columns) This declaration is very similar to the way we have declared Scanner, Person, Student, and Employee objects in the past. Make sure to declare a String array. // For reference, the following is an EXAMPLE declaration of an // String [] [] Array1 = new String [4][3]; // --> Step 4: Create a text file Make a text file and write 12 strings in it, one string on each line, and then save it in the folder that you want to save your program in it. The text file and your java program must be in the same folder. Step 5: read from the file ASU Home My ASU College: In this step you must open the file that you made in the step 4 and read the file. // put all the commands of this step in a try block try { // Make a fileReader object to open the file that you want // You the name of the file that you made in step 6 FileReader fr = new FileReader name of the file); // define a BufferedReader named inFile to read from the file // --> // use a nested for loop structure to read all lines of file for (int row = 0; row

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Concepts Of Database Management

Authors: Joy L. Starks, Philip J. Pratt, Mary Z. Last

9th Edition

1337093424, 978-1337093422

More Books

Students also viewed these Databases questions

Question

Why is background investigation important to the selection process?

Answered: 1 week ago