Coder Social home page Coder Social logo

sahasatvik / simpletools Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 2.46 MB

A library of simple tools written in Java which aims at providing a common base for future projects

License: MIT License

Java 99.26% Shell 0.74%
command-line-parser argument-parser option-parser

simpletools's Introduction

SimpleTools

A library of simple tools written in Java, which aim at providing a common base for projects in the future.

Overview

The SimpleTools library provides some utility classes which make common tasks, such as interpreting command line arguments (see com.github.sahasatvik.cli), much simpler.

The docs/ folder in this repository, as well as in SimpleToolsComplete.jar contains an extensive documentation of all of the features of every class in the library. You can start at docs/index.html.

How to Use this library in your Project

There are two ways of using this library :

  1. Using the uncompressed .class files : simply copy the contents of bin/ from the repository or SimpleToolsComplete.jar into the your project directory, and import the required classes (eg. to import all of the classes in the com/github/sahasatvik/cli folder, use import com.github.sahasatvik.cli.*;. Compile as normal.

  2. Using the SimpleTools.jar file : download SimpleTools.jar and copy it to a location within your project, and import the required classes as mentioned earlier. While compiling, remember to add SimpleTools.jar to your classpath, as follows :
        On UNIX based systems : javac -cp '.:path/to/jar/SimpleTools.jar' sourcefile.java
        On Windows systems : javac -cp '.;path/to/jar/SimpleTools.jar' sourcefile.java
    While executing your program, remember to add SimpleTools.jar to the classpath again, as follows :
        On UNIX based systems : java -cp '.:path/to/jar/SimpleTools.jar' sourcefile
        On Windows systems : java -cp '.;path/to/jar/SimpleTools.jar' sourcefile

simpletools's People

Contributors

sahasatvik avatar

Watchers

 avatar  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.