06/11/2017

Hospital Management System Project in Java | Free Code PDF

Create a mini Hospital Management System project in Java with source code and download a report PDF for free. This mini-project should contain the doctor-patient table with all records. for example Doctor name, Timing speciality, and availability. Hospital Management projects should have all the necessary requirements to full fill, the need to create a java project for the management staff of the hospital and also download the code and report for free. Do you know This is the most important and mostly asked project in schools and colleges?.

Hospital Management System Project in Java Explanation


This(Hospital Management System Project in Java with Source Code PDF) is a very popular project among students. In this project, I cover 1. DOCTOR, 2. PATIENT, 3. MEDICAL, 4. LAB, 5. FACILITY, 6. STAFF tables. Now take an example of the Doctor table, I already saved some doctor details, when you select option 1. The doctor then 2 option will occur. new entry or 2. doctor list Here you can save the details of the New Doctor like Below.

Hospital Management System Project in Java with Source Code PDF

  1. ID:
  2. Name:
  3. Specialization:
  4. Working Time:
  5. Qualification:

Simple Java Program for Hospital Management System


You can see the newly updated list of doctors and by pressing 2 you can see those details Check Below.

Doctors List


IDDoctor NameSpecialistTimingQualificationRoom No.
21Dr GhanendraENT10-04MBBS, MD17
32Dr VikramPhysician07-12MBBS45
17Dr NisthaChild Specialist10-04MBBS, MD08
33Dr PramodArtho10-04MBBS40
17Dr RekhaArtho08-12MBBS12

In this Hospital Management System Project in Java with Source Code PDF. You can also check the patient list or you can admit new patients same as the Doctors List for that you have to go to the main menu and then select a patient then 2 options will occur 1. Add New Entry or 2. Existing Patients List and by pressing 2 you can check the patient details. These are the list of my friend and they are not patient they are absolutely fine(Just for Fun).

Patients List


IDPatients NameDiseaseGenderAdmit StatusAge
12PankajCancerMaleY30
13KuliColdMaleY23
14SamyaMalariaFemaleN45
15RaviSugarMaleY25

You can find all the tables at the end.

How to Run Hospital Management System in Java 


How to run this Hospital Management System Project in Java with Source Code PDF. First, create a folder on your desktop with any name then save or download the code as hospitalmanagement.java. Now open a command prompt by pressing win+r simultaneously and go to the location of the hospitalmanagement.java by using the cd command.

CD desktop
CD “folder name”(without quotes)


Now run the below command. The first, command is for compiling the program and the second one is for running the program.

javac hospitalmanagement.java
java hospitalmanagement


after running the command their will be 7 .class(doctor.class, fecility.class,hospitalmanagement.class, lab.class, medical.class, patient.class, and staff.class) will be created.

Now your program is ready to work do whatever you want to perform operations. We also have some competitive websites solution in C, C++, and Java Programming languages. Free Download Java Projects and others here.

Hospital Management System Project in Java with Source Code PDF


Below you can find the Hospital Management System Project in Java with Source Code PDF. This is a very important mini or we can say that medium size of project for bachelors and masters student.


import java.io.*;
import java.util.*;
import java.util.Calendar;
/* Hospital Management System Project in Java with Source Code PDF Visit for more https://www.programmingwithbasics.com/ */
class staff
{
    String sid, sname, desg, sex;
    int salary;
    void new_staff()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("id:-");
        sid = input.nextLine();
        System.out.print("name:-");
        sname = input.nextLine();
        System.out.print("desigination:-");
        desg = input.nextLine();
        System.out.print("sex:-");
        sex = input.nextLine();
        System.out.print("salary:-");
        salary = input.nextInt();
    }
    void staff_info()
    {
        System.out.println(sid + "\t" + sname + "\t" + sex + "\t" + salary);
    }
}
class doctor
{
    String did, dname, specilist, appoint, doc_qual;
    int droom;
    void new_doctor()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("id:-");
        did = input.nextLine();
        System.out.print("name:-");
        dname = input.nextLine();
        System.out.print("specilization:-");
        specilist = input.nextLine();
        System.out.print("work time:-");
        appoint = input.nextLine();
        System.out.print("qualification:-");
        doc_qual = input.nextLine();
        System.out.print("room no.:-");
        droom = input.nextInt();
    }
    void doctor_info()
    {
        System.out.println(did + "\t" + dname + "  \t" + specilist + "     \t" + appoint + "    \t" + doc_qual + "       \t" + droom);
    }
}
class patient
{
    String pid, pname, disease, sex, admit_status;
    int age;
    void new_patient()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("id:-");
        pid = input.nextLine();
        System.out.print("name:-");
        pname = input.nextLine();
        System.out.print("disease:-");
        disease = input.nextLine();
        System.out.print("sex:-");
        sex = input.nextLine();
        System.out.print("admit_status:-");
        admit_status = input.nextLine();
        System.out.print("age:-");
        age = input.nextInt();
    }
    void patient_info()
    {
        System.out.println(pid + "\t" + pname + " \t" + disease + "     \t" + sex + "      \t" + admit_status + "\t" + age);
    }
}
class medical
{
    String med_name, med_comp, exp_date;
    int med_cost, count;
    void new_medi()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("name:-");
        med_name = input.nextLine();
        System.out.print("comp:-");
        med_comp = input.nextLine();
        System.out.print("exp_date:-");
        exp_date = input.nextLine();
        System.out.print("cost:-");
        med_cost = input.nextInt();
        System.out.print("no of unit:-");
        count = input.nextInt();
    }
    void find_medi()
    {
        System.out.println(med_name + "  \t" + med_comp + "    \t" + exp_date + "     \t" + med_cost);
    }
}
class lab
{
    String fecility;
    int lab_cost;
    void new_feci()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("fecility:-");
        fecility = input.nextLine();
        System.out.print("cost:-");
        lab_cost = input.nextInt();
    }
    void feci_list()
    {
        System.out.println(fecility + "\t\t" + lab_cost);
    }
}
class fecility //Sorry Facility but do not change the name 
{
    String fec_name;
    void add_feci()
    {
        Scanner input = new Scanner(System.in);
        System.out.print("fecility:-");
        fec_name = input.nextLine();
    }
    void show_feci()
    {
        System.out.println(fec_name);
    }
}
public class HospitalManagement
{
    public static void main(String args[])
    {
        String months[] = {
            "Jan",
            "Feb",
            "Mar",
            "Apr",
            "May",
            "Jun",
            "Jul",
            "Aug",
            "Sep",
            "Oct",
            "Nov",
            "Dec"
        };
        Calendar calendar = Calendar.getInstance();
        //System.out.println("--------------------------------------------------------------------------------");
        int count1 = 4, count2 = 4, count3 = 4, count4 = 4, count5 = 4, count6 = 4;
        System.out.println("\n--------------------------------------------------------------------------------");
        System.out.println("            *** Welcome to Hospital Management System Project in Java ***");
        System.out.println("--------------------------------------------------------------------------------");
        System.out.print("Date: " + months[calendar.get(Calendar.MONTH)] + " " + calendar.get(Calendar.DATE) + " " + calendar.get(Calendar.YEAR));
        System.out.println("\t\t\t\t\t\tTime: " + calendar.get(Calendar.HOUR) + ":" + calendar.get(Calendar.MINUTE) + ":" + calendar.get(Calendar.SECOND));
        doctor[] d = new doctor[25];
        patient[] p = new patient[100];
        lab[] l = new lab[20];
        fecility[] f = new fecility[20];
        medical[] m = new medical[100];
        staff[] s = new staff[100];
        int i;
        for (i = 0; i < 25; i++)
            d[i] = new doctor();
        for (i = 0; i < 100; i++)
            p[i] = new patient();
        for (i = 0; i < 20; i++)
            l[i] = new lab();
        for (i = 0; i < 20; i++)
            f[i] = new fecility();
        for (i = 0; i < 100; i++)
            m[i] = new medical();
        for (i = 0; i < 100; i++)
            s[i] = new staff();

        d[0].did = "21";
        d[0].dname = "Dr.Ghanendra";
        d[0].specilist = "ENT";
        d[0].appoint = "5-11AM";
        d[0].doc_qual = "MBBS,MD";
        d[0].droom = 17;
        d[1].did = "32";
        d[1].dname = "Dr.Vikram";
        d[1].specilist = "Physician";
        d[1].appoint = "10-3AM";
        d[1].doc_qual = "MBBS,MD";
        d[1].droom = 45;
        d[2].did = "17";
        d[2].dname = "Dr.Rekha";
        d[2].specilist = "Surgeon";
        d[2].appoint = "8-2AM";
        d[2].doc_qual = "BDM";
        d[2].droom = 8;
        d[3].did = "33";
        d[3].dname = "Dr.Pramod";
        d[3].specilist = "Artho";
        d[3].appoint = "10-4PM";
        d[3].doc_qual = "MBBS,MS";
        d[3].droom = 40;

        p[0].pid = "12";
        p[0].pname = "Pankaj";
        p[0].disease = "Cancer";
        p[0].sex = "Male";
        p[0].admit_status = "y";
        p[0].age = 30;
        p[1].pid = "13";
        p[1].pname = "Sumit";
        p[1].disease = "Cold";
        p[1].sex = "Male";
        p[1].admit_status = "y";
        p[1].age = 23;
        p[2].pid = "14";
        p[2].pname = "Alok";
        p[2].disease = "Maleriya";
        p[2].sex = "Male";
        p[2].admit_status = "y";
        p[2].age = 45;
        p[3].pid = "15";
        p[3].pname = "Ravi";
        p[3].disease = "Diabetes";
        p[3].sex = "Male";
        p[3].admit_status = "y";
        p[3].age = 25;

        m[0].med_name = "Corex";
        m[0].med_comp = "Cino pvt";
        m[0].exp_date = "9-5-16";
        m[0].med_cost = 55;
        m[0].count = 8;
        m[1].med_name = "Nytra";
        m[1].med_comp = "Ace pvt";
        m[1].exp_date = "4-4-15";
        m[1].med_cost = 500;
        m[1].count = 5;
        m[2].med_name = "Brufa";
        m[2].med_comp = "Reckitt";
        m[2].exp_date = "12-7-17";
        m[2].med_cost = 50;
        m[2].count = 56;
        m[3].med_name = "Pride";
        m[3].med_comp = "DDF pvt";
        m[3].exp_date = "12-4-12";
        m[3].med_cost = 1100;
        m[3].count = 100;

        l[0].fecility = "X-ray     ";
        l[0].lab_cost = 800;
        l[1].fecility = "CT Scan   ";
        l[1].lab_cost = 1200;
        l[2].fecility = "OR Scan   ";
        l[2].lab_cost = 500;
        l[3].fecility = "Blood Bank";
        l[3].lab_cost = 50;

        f[0].fec_name = "Ambulance";
        f[1].fec_name = "Admit Facility ";
        f[2].fec_name = "Canteen";
        f[3].fec_name = "Emergency";

        s[0].sid = "22";
        s[0].sname = "Prakash";
        s[0].desg = "Worker";
        s[0].sex = "Male";
        s[0].salary = 5000;
        s[1].sid = "23";
        s[1].sname = "Komal";
        s[1].desg = "Nurse";
        s[1].sex = "Female";
        s[1].salary = 2000;
        s[2].sid = "24";
        s[2].sname = "Raju";
        s[2].desg = "Worker";
        s[2].sex = "Male";
        s[2].salary = 5000;
        s[3].sid = "25";
        s[3].sname = "Rani";
        s[3].desg = "Nurse";
        s[3].sex = "Female";
        s[3].salary = 20000;

        Scanner input = new Scanner(System.in);
        int choice, j, c1, status = 1, s1 = 1, s2 = 1, s3 = 1, s4 = 1, s5 = 1, s6 = 1;
        while (status == 1)
        {
            System.out.println("\n                                    MAIN MENU");
            System.out.println("-----------------------------------------------------------------------------------");
            System.out.println("1.Doctos  2. Patients  3.Medicines  4.Laboratories  5. Facilities  6. Staff ");
            System.out.println("-----------------------------------------------------------------------------------");
            choice = input.nextInt();
            switch (choice)
            {
                case 1:
                    {
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("                      **DOCTOR SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        s1 = 1;
                        while (s1 == 1)
                        {
                            System.out.println("1.Add New Entry\n2.Existing Doctors List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        d[count1].new_doctor();count1++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("id \t Name\t Specilist \t Timing \t Qualification \t Room No.");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count1; j++)
                                        {
                                            d[j].doctor_info();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s1 = input.nextInt();
                        }
                        break;
                    }
                case 2:
                    {
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("                     **PATIENT SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        s2 = 1;
                        while (s2 == 1)
                        {
                            System.out.println("1.Add New Entry\n2.Existing Patients List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        p[count2].new_patient();count2++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("id \t Name \t Disease \t Gender \t Admit Status \t Age");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count2; j++) {
                                            p[j].patient_info();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s2 = input.nextInt();
                        }
                        break;
                    }
                case 3:
                    {
                        s3 = 1;
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("                     **MEDICINE SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        while (s3 == 1)
                        {
                            System.out.println("1.Add New Entry\n2. Existing Medicines List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        m[count3].new_medi();count3++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("Name \t Company \t Expiry Date \t Cost");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count3; j++) {
                                            m[j].find_medi();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s3 = input.nextInt();
                        }
                        break;
                    }
                case 4:
                    {
                        s4 = 1;
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("                    **LABORATORY SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        while (s4 == 1)
                        {
                            System.out.println("1.Add New Entry \n2.Existing Laboratories List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        l[count4].new_feci();count4++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("Fecilities\t\t Cost");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count4; j++) {
                                            l[j].feci_list();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s4 = input.nextInt();
                        }
                        break;
                    }
                case 5:
                    {
                        s5 = 1;
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("          **HOSPITAL FACILITY SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        while (s5 == 1)
                        {
                            System.out.println("1.Add New Facility\n2.Existing Fecilities List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        f[count5].add_feci();count5++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("Hospital  Facility are:");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count5; j++) {
                                            f[j].show_feci();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s5 = input.nextInt();
                        }
                        break;
                    }
                case 6:
                    {
                        s6 = 1;
                        System.out.println("--------------------------------------------------------------------------------");
                        System.out.println("                       **STAFF SECTION**");
                        System.out.println("--------------------------------------------------------------------------------");
                        while (s6 == 1)
                        {
                            String a = "nurse", b = "worker", c = "security";
                            System.out.println("1.Add New Entry \n2.Existing Nurses List\n3.Existing Workers List \n4.Existing Security List");
                            c1 = input.nextInt();
                            switch (c1)
                            {
                                case 1:
                                    {
                                        s[count6].new_staff();count6++;
                                        break;
                                    }
                                case 2:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("id \t Name \t Gender \t Salary");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count6; j++)
                                        {
                                            if (a.equals(s[j].desg))
                                                s[j].staff_info();
                                        }
                                        break;
                                    }
                                case 3:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("id \t Name \t Gender \t Salary");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count6; j++)
                                        {
                                            if (b.equals(s[j].desg))
                                                s[j].staff_info();
                                        }
                                        break;
                                    }
                                case 4:
                                    {
                                        System.out.println("--------------------------------------------------------------------------------");
                                        System.out.println("id \t Name \t Gender \t Salary");
                                        System.out.println("--------------------------------------------------------------------------------");
                                        for (j = 0; j < count6; j++)
                                        {
                                            if (c.equals(s[j].desg))
                                                s[j].staff_info();
                                        }
                                        break;
                                    }
                            }
                            System.out.println("\nReturn to Back Press 1 and for Main Menu Press 0");
                            s6 = input.nextInt();
                        }
                        break;
                    }
                default:
                    {
                        System.out.println(" You Have Enter Wrong Choice!!!");
                    }
            }
            System.out.println("\nReturn to MAIN MENU Press 1");
            status = input.nextInt();
        }
    }
}

The output of Hospital Management System in Java


The output of Hospital Management System in Java

Doctors List in Hospital


Doctors List in Hospital

Patients List in Hospital


Patients List in Hospital

Medicines List in Hospital


Medicines List in Hospital

Laboratories List in Hospital


Laboratories List in Hospital

Facilities List in Hospital


Facilities List in Hospital

Free download Hospital Management System Project in Java with Source Code PDF in a single click.

Similar to Hospital Management System Java Project


In the end, you can find that we have included similar mini-projects just like this one Hospital Management System Project in Java with Source Code PDF. So enjoy and show your support by sharing on your social media. To create this type of project you need to have a knowledge of ASCII Code Table.
Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

66 comments:

  1. Thanks....a lot...fr the...desired...need❣️❣️

    ReplyDelete
    Replies
    1. hello sir can i get the UML diagram of this management system

      Delete
    2. Great code, Ghanendra! You could improve the code by creating an employee class and extending it by other classes such as Doctor class, Nurse Class, Administrative Class, SupportStaff class and so on. You could also create a static variable for id in the Hospital class and get the id from a static method.

      Delete
  2. It's Working and I just want to know that who are the patient name.

    ReplyDelete
    Replies
    1. Thanks you for your support. These all patients are my friends.

      Delete
  3. Sir pls PDF & output file send me request

    ReplyDelete
  4. Sir pls PDF & output file send me request

    ReplyDelete
  5. I need the code in advance java

    ReplyDelete
  6. Send me file sr please request

    ReplyDelete
  7. Plz sir send me This Hospital management system project report using uml diagram on below email
    ufaheem430@gmail.com

    ReplyDelete
    Replies
    1. Check your Email. UML diagram is not include, Whatever I found, Just send it.

      Delete
    2. can you please send me the uml diagram too

      Delete
    3. Can u plz send the report pdf plzzzzz

      Delete
  8. sir please send me report of it using uml daigram
    email-abhishekkhantwal1608@gmail.com

    ReplyDelete
    Replies
    1. Check your Email. UML diagram is not include, Whatever I found, Just send it.

      Delete
    2. can i have the uml diagram too

      Delete
  9. sir please send me Report
    email-aftaba.naich@gmail.com

    ReplyDelete
  10. Sir I need library management system similar to this. Please send if you have got one.

    ReplyDelete
  11. Sir please send me report of it using uml diagram
    email. Zzsszz35@gmail.com

    ReplyDelete
  12. Can you provide the class diagram for it?

    ReplyDelete
    Replies
    1. do you mean uml diagram?
      did you get it ? can you share it

      Delete
  13. sir can u pls send this project to my mail vamshi.rocks01@gmail.com

    ReplyDelete
  14. Sir kindly send me the program and output as well.. It will be a great help!!
    ��please

    ReplyDelete
  15. Sir please send me the program and ss of the output please... It will be a great 🙏please!!

    ReplyDelete
  16. sir could you please send me the Hospital Management Report sir plzzzzzzzz
    send it to : swalihakittycute@gmail.com

    ReplyDelete
  17. sir could you please send me the report of HOSPITAL MANAGEMENT plzzz sir

    ReplyDelete
    Replies
    1. Have recieved an report ?? If u have then Please forward it to swaroopsavi555@gmail.com

      Delete
  18. SIR CAN U SEND THE ALGORITHM AND THE LIST OF VARIABLES USED IN THIS PROGRAM

    ReplyDelete
  19. sir please send me @siddhigu10@gmail.com please help sir

    ReplyDelete
  20. sir can a get the report of this hospital management system??

    ReplyDelete
  21. Bro can u send me copy of report which must includes the possible questions of interviewer may ask so
    That it can help me get job plz send it bro. @,,
    swaroopsavi555@gmail.com

    ReplyDelete
  22. sir can i ask for a favor

    ReplyDelete
  23. Sir can u send me the source code and project pdf

    ReplyDelete
  24. i wrote the codding but this is not full code its not showing list below can you help me please contact me

    ReplyDelete
  25. Sir can u send me the source code and project pdf

    ReplyDelete
  26. Sir can u send me the source code and project pdf

    ReplyDelete
  27. Sir please send me project report

    ReplyDelete
  28. SIR PLZ SEND ME A PROBLEM STATEMENT AND DETAILS OF THIS PROJECT

    ReplyDelete
  29. Sir can you send me the pdf sir

    ReplyDelete
  30. Sir in this project data is not saving anywhere

    ReplyDelete
  31. sir in this code no data is save in file

    ReplyDelete
  32. can u give example hotel management system project in java... i hope u can help me

    ReplyDelete
  33. sir could you send me a full source code of the above code

    ReplyDelete
  34. sir please provide me report for this project.

    ReplyDelete
  35. Sir can you send the report of this project please sir. Here is my gmail:
    kvijai128@gmail.com

    ReplyDelete
  36. I need its variable description table plzzz

    ReplyDelete
  37. I need its variable description table plzzz

    ReplyDelete
  38. Sir this content is great and much appreciated. It would be even more helpful if you can send me a report on: aishwaryanagulavancha@gmail.com Thankyou in advance.

    ReplyDelete
  39. Error: Could not find or load main class hospitalmanagement
    Caused by: java.lang.NoClassDefFoundError: HospitalManagement (wrong name: hospitalmanagement)??

    ReplyDelete
  40. What do u use here for save the data. Data is not saved after refreshing the programme

    ReplyDelete
  41. how to explain this code Hospital Management System Project

    ReplyDelete
  42. Can please send me documentation or uml, activity diagram of this Project on chapkesweta99@gmail.com

    ReplyDelete
  43. Great work sir so helpful sir can you please send me project report on mian4232@gmail.com.

    ReplyDelete
  44. Sir can you please send me the pdf of the file and the coding and output too
    My email: palak151005@gmail.clm

    ReplyDelete
  45. Sir can you please share the pdf and output of this project
    My email. palak151005@gmail.com

    ReplyDelete