0% found this document useful (0 votes)
11 views

java2

Uploaded by

dorleaditi16
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views

java2

Uploaded by

dorleaditi16
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

A

Micro Project Report On

“Develop application to show directory structure of your system”


IN FULFILMENT OF DIPLOMA IN COMPUTER
ENGINEERING OF MSBTE
MUMBAI
Submitted by:
1. Rohit Pandurang Gurav Roll no.3222
2. Pranav Sardar Bange Roll no.3228
3. Kartik Jitendra Kamble Roll no.3230

4. Gajendra Dilip Bhate Roll no.3231

Program name: Computer Engineering


Course name: Advanced Java Programming (22517)
Subject Teacher: Mr. P. K. Shinde

Department of Computer Engineering


Dr.D.Y.PATIL POLYTECHNIC KOLHAPUR Academic Year 2023-2024
Dr. D.Y.PATIL POLYTECHNIC KOLHAPUR

CERTIFICATE

This is to certify that the following students of Third Year Computer Engineering
1. Rohit Pandurang Gurav (3222)

2. Pranav Sardar Bange (3228)

3. Kartik Jitendra Kamble(3230)

4. Gajendra Dilip Bhate(3231)

have completed their Micro-Project work on “Develop application to show directory structure of
your system”. This is in partial fulfillment of the requirements for the award of the Diploma in
Computer Engineering and submitted to the Computer Engineering Department of Dr.D.Y.PATIL
POLYTECHNIC KOLHAPUR work carried out during a period of the academic year 20232024 as
prescribed in curriculum of MSBTE.

Place: Kolhapur
Date:

Prof. P. K. Shinde. Prof. P.K.Shinde Dr.M.M.Narke


Micro-Project Guide Head of Department Principal
ACKNOWLEDGEMENT

It’s our Pleasure to express sincere and heartiest thanks to our Micro-Project guide Prof. P. K.
Shinde for their valuable guidance, encouragement and support for the accomplishment of
MicroProject.
We are also really thankful to our Principle Dr. M. M. Narke . and the Head of Department
Prof. Shinde P.K. for their constant encouragement and motivation for the accomplishment of the
Micro-Project by expressing their guidelines regarding importance of MicroProject in developing
our career.
I am thankful to Co-workers of this Micro-Project for their valuable contribution. We
are thankful to all those peoples who directly or indirectly helped us in completion of this
Micro Project.

Name of Students
1. Rohit Pandurang Gurav (3222)

2. Pranav Sardar Bange (3228)

3. Kartik Jitendra Kamble(3230)

4. Gajendra Dilip Bhate(3231)


INDEX

Sr. No. Contents Page. No.

1. Rationale 1

2. Aims/Benefits of the Micro-Project. 1

3. Course Outcome Achieved. 1

4. Literature Review. 1

5. Actual Methodology Followed. 2

6. Actual Resources Used 2

7. Outputs of the Micro-Project. 3

8. Skill Developed / Learning outcome of this

Micro-Project 5

9. Application of this Micro-Project. 5


Develop application for WindowEvent

1.0 Rationale:

In this Develop application to windows system, the event comment window listener is used.
A windows is a that is used to opening and closing windows. In Java, a window event
program refers to handling events related to graphical user interfaces (GUIs) and windows.
These events are typically associated with the user interacting with the GUI, and Java
provides a mechanism to respond to these events.

2.0 Aims/Benefits of the Micro-Project:

Aim: Develop application for WindowEvent.

Benefit:
 Efficiency: A window can be open and close
 User friendly : user can open and close window as their required.

3.0 Course Outcomes Addressed:

1. Develop programs using GUI Framework (AWT and Swing)


2. Handle events of AWT and Swing components.

4.0 Literature Survey

Title of
Sr.No. book/websites Author

1 Complete Reference Schildt, Herbert

2 Holzner, Steven et al.


Java 2 Programming
Black Book

1
Develop application for WindowEvent

5.0Actual Methodology Followed:


1. Gathered Information:
WindowListener: The event is passed to every WindowListener or WindowAdapter
object which registered to receive such events using the window's addWindowListener
method.

Frame: A Frame is a top-level window with a title and a border.The size of the frame
includes any area designated for the border.

Public void windowclosing (WindowEvent e): It is called when the user attempts
to close the window from the system menu of the window.

6.0 Actual Resources Used:


Sr Name of Specifications

No Resource/material
Computer System DELL optiplex,2.93 GHz, 2 GB< RAM, 500 GB HDD
1

Operating System Ubuntu


2

3 Software JDK 1.5 Onwards

4 Links https://wwww.tutorialspoint.com/javahttps://nptel.ac.in/courses/1

06105084/30https://www.javatpoint.com/servlet-tutorial

Reference Books 1. Complete Reference by Schildt, Herbert


2. Java 2 Programming Black Book by Holzner, Steven st al.
5
3. Java Server Programming Tutorial JAVA EE6 Black Book
by Kogent Learning Solutions

2
Develop application for WindowEvent

7.0 Outputs of the Micro-Project:

Program Code for Develop application for WindowEvent.


import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.awt.event.WindowListener;

import java.awt.*; public class text

{ public static void main(String

args[])

Frame frame = new Frame("Window Listener");

frame.addWindowListener(new WindowAdapter()

public void windowClosing(WindowEvent w)

System.exit(0);

});

frame.setSize(300, 30g0);

frame.setVisible(true);

4
Develop application for WindowEvent

Output:

8.0 Skill Developed / Learning outcome of this Micro-Project

1. 1.Study different types of event, specifically windowEvent.


2. Create a window using windowEvent component.

9.0 Application of this Micro-Project

1.To help users keep window open and close.


2.Generate a window.

You might also like