Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a Java program to imitate a file system of an operating system. In your solution, design a class called BasicFile with options to carry

Write a Java program to imitate a file system of an operating system.

In your solution, design a class called BasicFile with options to carry out the following operations:

(a) Select a file, using a file dialog box.

(b) Make a copy of the file selected - whether it is a text file or an image file.

(c) Write to an output file with the option of either appending to a text file, or over-writing the contents of a text file.

(d) Display the following attributes of the input file in a scrollable screen:

i. The absolute path of the file

ii. Files and directories that are in the path of the file.

iii. The size of the file in kilobytes.

iv. The number of lines in the file, if the is a text file.

(e) Display the contents of the input file in a scrollable pane.

(f) Search the input file line by line for a given string. The output must contain the line number, followed by the contents of the line that contains the search argument. For instance given the following the search string: Java, the program would search the file line by line generating a result such as the following:

50: on the island of Java

95: The people of JAVA loves jaVa.

(g) Tokenize the input file so that the program recognizes all printable characters on the keyboard.

NB:

  1. You must first select the file before items (b) (g) can be applicable
  2. You may utilize the classes GetData, BasicFile and TestBasicFile in the textbook as source of reference.

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

Database Programming Languages 12th International Symposium Dbpl 2009 Lyon France August 2009 Proceedings Lncs 5708

Authors: Philippa Gardner ,Floris Geerts

2009th Edition

3642037925, 978-3642037924

More Books

Students also viewed these Databases questions

Question

Decision tree algorithms are very poor choices for interpretation

Answered: 1 week ago

Question

1. Define and explain culture and its impact on your communication

Answered: 1 week ago