Java Microproject
Java Microproject
Mr.B.P.Mulla
1
GOVERNMENT POLYTECHNIC, MIRAJ.
Certificate
This is to certify that, as part of the partial fulfillment of the Second Year Diploma Course for
the semester fourth, the Bonafide students studying in Second Year Diploma (Computer), I
Scheme Miss. Simaran Imran Nadaf(22371) and Punam Shahaji Shinde(22365) have
completed the project report titled as “Notes And Password Manager”– JAVA the guidance
of Mr. Mrs.B.P.Mulla submitted it to Government Polytechnic, Miraj. The information
presented in this project report has not been submitted earlier.
2
ACKNOWLEDGEMENT
We take it is an opportunity to thank all those who have directly and indirectly inspired,
directed and assisted us towards successful completion of this project report. We express our
sincere thanks to the Dr. Nitin Sonaje & the Head of Department, Dr. V. R. Falmari for having
us allowed to submit this report as part of our academics learning. We express our sincere
thanks to Mr. B.P.Mulla Lecturer in Electronics, Government Polytechnic, Miraj for
encouragement throughout the project report and guideline in designing & working out this
project.
Yours Sincerely -
Simaran Imran Nadaf
Punam shahaji shinde
3
SR PAGE NO
NO
CONTENTS
1 Aim of the Micro-Project 4
2 Rationals 4
4 Literature Review 4
6 Actual Resources 6
7 Skills Developed 12
8 Application f Micro-Project 12
Annexure – I
Micro-Project Proposal
a) Develop program using object-oriented methodology in JAVA. b) Apply concept of inheritance for code
reusability.
4
II.Study various features of java.
IV.Study the working of Notes And Password Managers.V.Study various methods ,Classes ,string
operations etc.
5
4.0 Action Plan
SR Details of Activity Planned Planned Name of responsible
NO Start date finish Date Team members
1 Identify the requirements of Simaran Nadaf
the project.
2 Design the Logic for the Project. Simaran Nadaf
6
Annexure -||
Micro-Project Report
Rationale:
enriched with free and open source libraries.In current industrial scenario Java has the
Broad industry support and is prerequisite with many allied technologies like Advanced
Java, Java Server Pages, and Android Application Development.Thus, current industrial trends necessitate
acquiring Java knowledge for Computer Engineering and Information
Technology gradutes. This course develops necessary skills in students to apply object oriented
programming techniques in Java so that students will be able to develop complete applications using core
Java .
The aim of the Micro-Project is to create Notes And Password Manager in Jdk 1.8.0
This program is written in Java programming language. Here are the main syntaxes used in the program:
String[] note titles, noteContents, passwordLabels, passwordValues: declaration of String arrays int
noteCount, passwordCount: declaration of int variables
• User Input/Output:
7
Scanner scanner=new Scanner(System.in): creates a new Scanner object to read user input from the
console
• Condtional statements:
• Looping:
while loop:used to repeatedly exccute a block of code while a certain condition is true
for loop: used to iterate over a collection of items or to perform a specific number of iterations
• Array manipulation:
• String manipulation:
8
METHOD DEFINATION AND INVACTION:
Private static void add Note(): defines a method that add a note to the note Titles and note Contents
arrays
9
7.0 SOURCE CODE OF PROGRAM:
import java.util.scanner
While(true){
String command=scanner.nextLine();
if(command.equalsIgnoreCase("exit")){
break;
}else if command.equalsIgnoreCase("Note")||command.equalsIgnoreCase("addNote")){
addNote();
}else if (command.equalsIgnoreCase("password")||
command.equalsIgnoreCase("addPassword")){
addPassword();
}else if(command.equalsIgnoreCase("view")){
String viewCommand=scanner.nextLine();
if (viewCommand.equalsIgnoreCase("note")||
viewCommand.equalsIgnoreCase("viewNote")){
10
viewNote();
} else if (viewCommand.equalsIgnoreCase("password")||
viewCommand.equalsIgnoreCase("viewPassword"))}
viewPassword()…
String title=scanner.NextLine();
String content=scanner.nextLine();
note titles[noteCount]=title;
noteContents[noteCount]=content;
noteCount++;
System.out.println("Note added,");
String label=scanner.nextLine();
System.out.println("Enter password:");
String password=scanner.nextLine();
passwordLabels[passwordCount]=label;
passwordValues[passwordCount]=password;
passwordCount++;
System.out.println("Password added.");
String tilte=scanner.nextLine();
boolean found=false;
for(int I=0;I<noteCount;I++){
if (note titles[i].equalsIgnoreCase(title))}
System.out.println(noteContents[i]);
11
found=true;
if(!found)}
System.out.println("Enterpassword label.");
String label=scanner.nextLine();
boolean found=false;
for(int I=0;I<passwordCount;I++){
if(passwordLabels[i].equalsIgnoreCaselabel)){
System.out.println(passwordValues[i]);
found=true;
break;
if(!found){
12
13
14
•Basic knowledge about Core Java Programming developed from this Micro-Project.
• Creativity.
• Password Manager is used for various login Activities by user to operate various
11.0 Conclusion:
We learn to design " Notes And Password Manager" using Jdk 1.8.0, also we understood Various Concepts
of Java.
Semester: 4th
15
Sr.No. Characteristics Poor Marks Average Good Excellent Sub
to be assessed (1 – 3) (Marks 4- (Marks (Marks 9- total
5) 9-10) 10)
(A)Process and Product Assessment (Convert above total marks out of 6 marks)
1. Relevance to the course
2. Literature
Review/information
collection
3. Completion of Target as
per project
proposal
4. Analysis of Data and
representation
5. Quality of
Prototype/Model
6. Report Preparation
(A) (B)
Roll No. Process and Product Individual Total Marks
assessments (6 marks) Presentation or viva 10
(4 marks)
22362
22365
---------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------
Name and designation of the Teacher: -
---------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------
Dated Signature:
16
---------------------------------------------------------------------------------------------
17