An easy to use Student Record Printer developed by using Java to save the records of students to PDF files.
Student Record Printer.
Setting up and installing this software is easy by just installing Java.
Softwares needed:
Installation links of the required softwares:
For Windows users:
The above command will open the software.
java -jar Student_Record_Printer.jar
For Ubuntu/Debian users:
Install Java (JDK) by running the following command in terminal:
sudo apt-get install default-jdk
To check whether Java JDK has been installed correctly or not, run the following command in the terminal:
java -version.
Now open the terminal and run the following command:
sudo update-alternatives --config java
Copy the path of the Java installation directory.
Now run the following command in the terminal:
sudo nano /etc/environment
Now type the following line in the file (Java path might be different, so change accordingly and save the file):
JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"
Now run the following command in the terminal:
export PATH=$PATH:$JAVA_HOME/bin
Now run the following command in the terminal:
source /etc/environment
Running the above command will source the variabl es that we just set.
Now check Java installation by running the command:
java -version
Now download the zip of the project from GitHub and then extract it. Under the extracted contents, you will see a .jar file which is the archived (packed) file of the project which is ready to run.
To run the .jar file, open the the terminal and navigate to the extracted project content’s directory and run the following command:
java -jar Student_Record_Printer.jar
The above command will open the software.
Following the above installation steps for required softwares will set up an environment to run the Student Record Printer without any hassle.
For Windows users:
Open your command prompt and navigate to the project’s directory and run the following command:
java -jar Student_Record_Printer.jar
For Ubuntu/Debian users:
Open your terminal and navigate to the project’s directory and run the following command:
java -jar Student_Record_Printer.jar
Siddhesh Kudtarkar