GithubHelp home page GithubHelp logo

csci2020u_assignment2's Introduction

File Sharer

CSCI 2020U Assignment 2

Share files over the network

How to Compile

Requisites

  • Repo cloned/downloaded as zip and extracted
  • Java is installed (Tested using OpenJDK 8)
  • Gradle is installed (Tested using Gradle 4.4.1)

Commands

In the cloned/downloaded repo's directory:

Compile the host:
gradle buildhost

Compile the client:
gradle buildclient

Navigate to the host's executable jar directory:
cd host

Keep track of which Java processes you currently have running:
pgrep java

Either:
Launch the file host in the current terminal:
cd build/libs && java -jar host.jar
Then open another terminal in the current directory and run the rest of the commands in that window.
OR
Run the file host as a background process (logs will be logged to "./log.txt"):
./launch_host

Navigate to the client's executable jar directory:
cd ../client/build/libs

Run the client program:
java -jar client.jar

Terminating the file host after you're done:
pgrep java
kill <process>
where process is the number that was not listed before.

Server arguments:
java -jar host.jar <port> <shareDir>
port - The port to listen for connections on (default 8080)
shareDir - Directory to share the contents of and download files to (default "./share/")

Client arguments:
java -jar client.jar <host> <port>
host - The address of the host to connect to (default "localhost")
port - The port to connect to (default 8080)

csci2020u_assignment2's People

Contributors

prototype-a avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.