10/10 - Airline Management System | Java Project | Boarding Pass

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • An Airline Management System is a managerial software which targets to control all operations of an airline. This system involves the scheduling of flights, air ticket reservations, flight cancellations, customer support, and staff management. Daily flights updates can also be retrieved by using the system.
    🎥 Complete playlist of Airline Management System
    • 1/10 - Airline Managem...
    Technologies Used: Core Java (Swing & AWT)
    Database Used: MySQL
    IDE used: Netbeans
    📕 Documentation/ References
    ---------------------------------------------------------------------------------------------
    Please find the source code of the Project
    github.com/kun...
    Please find the Google Drive link for icons and database file
    drive.google.c...
    Please find Google Drive link for Project File
    drive.google.c...
    ---------------------------------------------------------------------------------------------
    How to Download Java, watch this video
    • Install Java JDK 17 on...
    How to Download Netbeans, watch this video
    • How to Download and In...
    How to Download MySQL, do watch this video
    • How to Install MySQL o...
    Other Videos:
    ➡ Java Projects Playlist: • 1/12 - Bank Management...
    ➡ JavaScript Projects Playlist: • JavaScript Projects
    ➡ React Projects Playlist: • React Projects
    ➡ MERN Stack Projects Playlist: • MERN Stack Projects
    ➡ Next js Projects Playlist: • Next.js Projects
    ➡ Leet Code Questions Playlist: • LeetCode Solutions | Java
    ➡ Full Stack Projects Playlist (React & Spring Boot): • Full Stack Projects - ...
    ➡ Advance JavaScript Tutorial: • Advanced Javascript
    🌎 Find Me Here:
    Instagram: codeforinterview ( / codeforinterview )
    Telegram: codeforinterview (t.me/codeforin...)
    WhatsApp: Code for Interview (whatsapp.com/c...)
    #java #javaproject #javaprogramming

Комментарии • 35

  • @codeforinterview
    @codeforinterview  3 месяца назад

    Checkout other Java Projects
    ruclips.net/video/pMR_48AF-A0/видео.html

  • @AbhijeetTiwari-rd6ll
    @AbhijeetTiwari-rd6ll Месяц назад +1

    completed it successfully bhaiya thanks

  • @LARAIBNAAZ-b9i
    @LARAIBNAAZ-b9i 5 дней назад +1

    hello sir...i am not able to open boarding pass frame in home tab ...please tell the procedure

    • @avyushyasingh3999
      @avyushyasingh3999 День назад

      Try typing this in home():
      JMenuItem boardingPass = new JMenuItem("Boarding Pass");
      boardingPass.addActionListener(this);
      ticket.add(boardingPass);
      and then in actionperformed(), type:
      else if(text.equals("Boarding Pass")){
      new BoardingPass();
      Hope it helped...

  • @khushalchauhan0303
    @khushalchauhan0303 Месяц назад

    hello sir i watched the project .. the problem i found in it i am not able to open the boarding pass tab from the home page pls resolve the issue.. if your project working is fine then also tell me in the comment thank you

  • @rajbahadursharma1292
    @rajbahadursharma1292 2 дня назад

    Payment gateway include karo na please bhai 🙏

  • @kushagrasagar726
    @kushagrasagar726 3 месяца назад +1

    Can I use this project in my resume ? If so, how much impact can this project have ?

    • @codeforinterview
      @codeforinterview  3 месяца назад

      You can add this in resume with your other projects

  • @imactrendz6961
    @imactrendz6961 2 месяца назад

    Helllo Sirji Can u tell me how to run this project i have downloaded the files and opened eclipse i have doubt how to connect with database and where should i run the sql code in workbench and how to do anyone knows i wnat to use this project in one of my exams that is held this month 1st sem

  • @vaishnavijha5636
    @vaishnavijha5636 Месяц назад

    Sir please you add the payment options in this project

  • @chaithanya.r7139
    @chaithanya.r7139 Месяц назад

    @code for Interview I have no error in the project but if I click ticket then I select boarding pass it is not working

  • @chillofi5284
    @chillofi5284 2 месяца назад

    Does this use internet connection? I run it offline, but it says failure on connecting to the server.

  • @riya26_kum
    @riya26_kum 29 дней назад

    action work ni ho rha

  • @anime_craze0
    @anime_craze0 Месяц назад

    Is frontend included in the githun code?

  • @abhishekmahapatro6819
    @abhishekmahapatro6819 26 дней назад

    Jiska v boardingPass nhi khul rha the reason is,u r writing
    JMenuItem boardingPass = new JMenu("Boarding Pass"); but the correct one is below
    JMenuItem boardingPass = new JMenuItem("Boarding Pass");

    • @abhishekmahapatro6819
      @abhishekmahapatro6819 26 дней назад

      Incase your code is not working here's the full code of Home.java below

    • @abhishekmahapatro6819
      @abhishekmahapatro6819 26 дней назад

      package airlinemanagementsystem;
      import java.sql.*;
      import java.awt.*;
      import javax.swing.*;
      import java.awt.event.*;
      public class Home extends JFrame implements ActionListener {
      public Home(){

      setLayout(null);

      ImageIcon i1 = new ImageIcon(ClassLoader.getSystemResource("airlinemanagementsystem/icons/front.jpg"));
      JLabel image = new JLabel(i1);
      image.setBounds(0,0,1600,800);
      add(image);

      JLabel heading = new JLabel("AIR INDIA WELCOMES YOU!");
      heading.setBounds(500,40,1000,40);
      heading.setForeground(Color.black);
      heading.setFont(new Font("Tahoma",Font.BOLD,36));
      image.add(heading);

      JMenuBar menubar = new JMenuBar();
      setJMenuBar(menubar);

      JMenu details = new JMenu("Details");
      menubar.add(details);

      JMenuItem flightDetails = new JMenuItem("Flight Details");
      flightDetails.addActionListener(this);
      details.add(flightDetails);

      JMenuItem customerDetails = new JMenuItem("Add Customer Details");
      customerDetails.addActionListener(this);
      details.add(customerDetails);

      JMenuItem bookFlight = new JMenuItem("Book Flight");
      bookFlight.addActionListener(this);
      details.add(bookFlight);

      JMenuItem journeyDetails = new JMenuItem("Journey Details");
      journeyDetails.addActionListener(this);
      details.add(journeyDetails);

      JMenuItem ticketCancellation = new JMenuItem("Cancel Ticket");
      ticketCancellation.addActionListener(this);
      details.add(ticketCancellation);

      JMenu ticket = new JMenu("Ticket");
      menubar.add(ticket);

      JMenuItem boardingPass = new JMenuItem("Boarding Pass");
      boardingPass.addActionListener(this);
      ticket.add(boardingPass);

      setExtendedState(JFrame.MAXIMIZED_BOTH);
      setVisible(true);
      }

      public void actionPerformed(ActionEvent ae){
      String text = ae.getActionCommand();

      if(text.equals("Add Customer Details")){
      new AddCustomer();
      }
      else if(text.equals("Flight Details")){
      new FlightInfo();
      }
      else if(text.equals("Book Flight")){
      new BookFlight();
      }else if(text.equals("Journey Details")){
      new JourneyDetails();
      }
      else if(text.equals("Cancel Ticket")){
      new Cancel();
      }
      else if(text.equals("Boarding Pass")){
      new BoardingPass();
      }

      }

      public static void main(String[] args){
      new Home();

      }
      }

  • @ChhayaKakad
    @ChhayaKakad 3 месяца назад

    Ye series kab tak complete hogi?

  • @user-ow7ew4ws4n
    @user-ow7ew4ws4n 3 месяца назад

    Hello sir please ek video mysql ki bana ke ache explain kar dijiye
    Use apne code me kase insert karna hai kase delete karna hai
    My sql ko apne netbeans me kase add karna please bata dijiye

    • @codeforinterview
      @codeforinterview  3 месяца назад

      I already did that in the same project, check this video
      ruclips.net/video/sShYYlNPWnA/видео.html

  • @adityaagarwal2324
    @adityaagarwal2324 3 месяца назад

    Bhaiya aap abhh bhi Paytm mae hee hoh?

    • @codeforinterview
      @codeforinterview  3 месяца назад

      Hnji bhai

    • @adityaagarwal2324
      @adityaagarwal2324 3 месяца назад

      @@codeforinterview situation kya hn waha, any insights please (hiring or layoffs)

    • @codeforinterview
      @codeforinterview  3 месяца назад

      @@adityaagarwal2324 ping me on insta, username: codeforinterview

  • @swethanjalivarma482
    @swethanjalivarma482 2 месяца назад

    If we select ticket and press boarding pass in the admins page it is not working bro?

    • @codeforinterview
      @codeforinterview  2 месяца назад

      Do you have any error on the terminal of the IDE?

    • @swethanjalivarma482
      @swethanjalivarma482 2 месяца назад

      @@codeforinterview no error i have executed everything properly but........ only boarding pass page is created but it's not opening in the admins page when I click ticket and open boarding pass