Results 1 to 2 of 2
Thread: Java searcher program CHALLANGE
- 01-08-2012, 10:51 PM #1
Member
- Join Date
- Jan 2012
- Posts
- 11
- Rep Power
- 0
Java searcher program CHALLANGE
create an application, searcher that takes two command line arguments: the starting directory and the target to find.
Searcher makes use of a recursive algorithm with the method signature: public static void scan (String path). This recursive algorithm needs to scan through directories and over file names in order to locate the specified file from the command line. You will, in all likelihood, need to make your FileIOHelper class described below. once you located your file you can stop executing and display the output of where the file was located.
Create a class called FileIOHelper. This has two private String arrays, directories and files. It also includes two public instance int variables dirLength and fileLength witch stores length of directories and files String arrays respectively.
it has one constructor that takes a file object, witch is used to determine the directory where you are going to be getting the information from. the constructor needs to iterate through each array element provided and assign the String to the right array(it's either a dir or file). Your arrays need to resize properly as you iterate through them.
The fileIOHelper has two public methods, getDirectories() and getFiles() both return their respective protected String arrays.
The FileIOHelper also has 2 private methods addToFile() and addToDirectory() witch both take a String and return a String array
extra
1)keeping track of witch stack your working on currently - loggin information to a file through a static logger class.
2)using assertions where posible.
Came across it some weeks ago and thought it was a fun project to tackle and thought i'd share it whould like to compare my work to others.
-
Re: Java searcher program CHALLANGE
This looks like a nice project and I think that I speak for all in wishing much luck in successfully completing it and getting a decent grade from it.
Similar Threads
-
execute java program within java program
By popey in forum New To JavaReplies: 2Last Post: 10-22-2009, 05:32 PM -
homework help/ String Searcher
By safecracker in forum New To JavaReplies: 8Last Post: 12-04-2008, 05:41 AM -
Regular Expression Challange
By hiklior in forum New To JavaReplies: 2Last Post: 04-24-2008, 05:05 AM -
How to execute an External Program through Java program
By Java Tip in forum java.ioReplies: 0Last Post: 04-04-2008, 02:40 PM -
How to execute an External Program through Java program
By JavaBean in forum Java TipReplies: 0Last Post: 10-04-2007, 09:33 PM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks