Write a client program and server program. The server uses a socket connection to allow a client to supply a filename and the server will send the file contents to the client or an error message if the file does not exist. The client will create a new file with the same contents. The client will supply the filename "input.txt" to the server and create as it's output  "output.txt". Don't ask the user for these names or any questions at all. These files will be located in the top level folder of your project, just like in Eclipse Project 1. The Server sends whatever file the Client requests. Don't put "input.txt" in the Server code. The client must get the contents from the Server. It must not read input.txt directly. Do not accept arguments from the command line. This means that you are not permitted to get information to use from the args variable in the following code:  public static void main(String[] args) { Do not use a path name when opening the files. This means the files should be located in the top level folder of the project. Do not zip your project, just send the 2 (and only 2) .java files. You are not permitted to make this program use a GUI.  Both programs must be part of the same Eclipse project. One class named Server and one named Client. These must be the ONLY 2 CLASSES. They must be in a package named clientServerPackage. These names are not negotiable and are worth points. Not using these names will cause your program to not compile on my side without me changing them. Capitalization counts.  To summarize, Client sends "input.txt" to the Server. Server receives the name and opens ANY file with THAT name. Don't hard code "input.txt" into the Server. Server opens the file with that name, reads the contents and sends the contents to the Client. Client creates output.txt with that same content. Understand the difference between a filename and a file. Your name must appear at the top of all source files. Your class names must be Server and Client. Capitalization counts. It must be in files named Server.java and Client.java.  It should be in a package named clientServerPackage, as explained in an earlier video.   Put your name at the top of BOTH source files.   Project.txt mentioned above must be uploaded.   You must use proper indentation like in the book.   You must use meaningful variable names.   Your program must be sufficiently commented.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 6PE
icon
Related questions
Topic Video
Question

Write a client program and server program. The server uses a socket connection to allow a client to supply a filename and the server will send the file contents to the client or an error message if the file does not exist. The client will create a new file with the same contents. The client will supply the filename "input.txt" to the server and create as it's output  "output.txt". Don't ask the user for these names or any questions at all. These files will be located in the top level folder of your project, just like in Eclipse Project 1. The Server sends whatever file the Client requests. Don't put "input.txt" in the Server code. The client must get the contents from the Server. It must not read input.txt directly.

Do not accept arguments from the command line. This means that you are not permitted to get information to use from the args variable in the following code: 

public static void main(String[] args) {

Do not use a path name when opening the files. This means the files should be located in the top level folder of the project.

Do not zip your project, just send the 2 (and only 2) .java files.

You are not permitted to make this program use a GUI. 

Both programs must be part of the same Eclipse project. One class named Server and one named Client. These must be the ONLY 2 CLASSES. They must be in a package named clientServerPackage. These names are not negotiable and are worth points. Not using these names will cause your program to not compile on my side without me changing them. Capitalization counts. 

To summarize, Client sends "input.txt" to the Server. Server receives the name and opens ANY file with THAT name. Don't hard code "input.txt" into the Server. Server opens the file with that name, reads the contents and sends the contents to the Client. Client creates output.txt with that same content. Understand the difference between a filename and a file.

Your name must appear at the top of all source files.

  1. Your class names must be Server and Client. Capitalization counts. It must be in files named Server.java and Client.java. 
  2. It should be in a package named clientServerPackage, as explained in an earlier video.  
  3. Put your name at the top of BOTH source files.  
  4. Project.txt mentioned above must be uploaded.  
  5. You must use proper indentation like in the book.  
  6. You must use meaningful variable names.  
  7. Your program must be sufficiently commented. 
AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning