• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer
projectsgeek

ProjectsGeek

Download Mini projects with Source Code, Java projects with Source Codes

  • Home
  • Java Projects
  • C++ Projects
  • VB Projects
  • PHP projects
  • .Net Projects
  • NodeJs Projects
  • Android Projects
    • Project Ideas
      • Final Year Project Ideas
      • JSP Projects
  • Assignment Codes
    • Fundamentals of Programming Language
    • Software Design Laboratory
    • Data Structure and Files Lab
    • Computer Graphics Lab
    • Object Oriented Programming Lab
    • Assembly Codes
  • School Projects
  • Forum

Java Projects

Online Library Management System

April 9, 2012 by ProjectsGeek 37 Comments

Online Library Management System
Online Library Management System 1

 

Online Library Management System 2

 

Online Library Management System 3

 

Online Library Management System 4

 

Online Library Management System 5
Online Library Management System 6
Download Project Here

Other Projects to Try:

  1. Online Library System Project in Java
  2. Online Library Management System Project
  3. Online digital movie library system
  4. Online Music Library project in PHP
  5. Online Library Project using JSP

Filed Under: Java Projects Tagged With: Java Projects

How to Run Java Projects

April 9, 2012 by ProjectsGeek 29 Comments

How to Run Java Projects
Here is the detailed Process for Running Java and HTML Projects which includes JSP Pages . As normal Java programs can run directly through command line , But JSP pages need Server to execute those requests .
 
So , the process is very Simple if you follow these simple steps . First of all you have to Download Apache Tomcat for their Website . You can Download it from here …..
 
Now you have exe file to install here is the steps for installing Apache Tomcat …
 
 
How to Run Java Projects 7
Step:1
 
 
 
 
How to Run Java Projects 8
Step:2
 
 
 
How to Run Java Projects 9
Step:3
 
 
How to Run Java Projects 10
Step:4
 
 
 
 
How to Run Java Projects 11
Step:5

 

How to Run Java Projects 12
Step:6

 

How to Run Java Projects 13
Step:7

 

How to Run Java Projects 14
Step:8      
 
 
Now your Apache Tomcat is installed on the machine you can start Server by just clicking on Start button in step:8  . You next step would be to run your project through this Server …
 
Here is the steps for putting files on server to run them …
 
  • Go to Program files–>Apache Software Foundation–>Apache–>root or www .
  • Put all files in this folder of you website or project .
  • Now you can directly run all these files through browser .
  • Just go to your browser and Type : Localhost:8080/Home.html
  • And thats it your page will be Loaded instantly .

Follow these steps for running any JSP and HTML projects .

 

 
 

Other Projects to Try:

  1. 20+ JSP Projects with Source Code
  2. How to install Apache tomcat on Windows 7
  3. PHP projects with Source Code
  4. Web Skeletonizer Service project in Java
  5. Java Programs

Filed Under: Java Projects Tagged With: Java Projects

Online Chat Java Project

April 9, 2012 by ProjectsGeek Leave a Comment

Online Chat Java Project
Online Chat Java Project 15

 

Online Chat Java Project 16
Online chat java project

Other Projects to Try:

  1. Broadcasting Chat Server Project using Java
  2. Online Chat Express project in Java
  3. Chat Server project in Java
  4. Lan Chat and File Sharing Java Project
  5. 100+ Free Java mini projects with Source Code

Filed Under: Java Projects Tagged With: Java Projects

First Program in Java

April 4, 2012 by ProjectsGeek Leave a Comment

First Program in Java
 public class FirstProgram  {  
      public static void main( String [] args )   
   {  
           System.out.print (“Java Program”);  
           System.out.print (“My Program”);  
   }  
  }  

C:\ javac FirstProgram.java
C:\java FirstProgram
Java Program My Program

 

 public class FirstProgram  {  
      public static void main( String [] args )   
   {  
           System.out.print (“Java Program”);  
           System.out.println (“My Program”);  
   }  
  }  

C:\ javac FirstProgram.java
C:\java FirstProgram
Java Program
My Program

 

Questions for Practice :
 What are the advantages of Java? 

What is the difference between an interpreter and a compiler?

Define Class and Object?

What are different Java programs.

Other Projects to Try:

  1. Java Programs
  2. To Implement a Program Retrieval of Documents using Inverted Files
  3. Threads in Java Tutorial for Beginners
  4. Email Program System Java Project
  5. Java Programming from program analysis to program Design By -DS Malik

Filed Under: Java Projects Tagged With: Java Projects

Public and Private Keywords

April 4, 2012 by ProjectsGeek Leave a Comment

Public and Private Keywords Java
The public keyword is an access specifier.
Determines how the other parts of the program can access the members of the class.
When a class member is preceded by public, then that member can be access by code outside the class in which it is declared. 

The opposite of public is private.
Prevents a member from being used by code defined outside of its class.

In our program, main() must be declared as public since it must be called by code outside of its class when the program is started.

The keyword static allows main() to be called before an object of the class has been created.
This is necessary since main() is called before an object of the class has been created.

The keyword void tells the compiler that main() does not return a value.
Methods may also return values.

As stated, main() is the method called when a Java application begins.

Any information that you need to pass to a method is received by variables specified within the set of parentheses that follow the name of the method.
These variables are called parameters.
If no parameters are required for a given method, you still need to include the empty parentheses.

The next line
System.out.println (“Java Language”);
Outputs the string “Java Language” followed by  a new line on the screen.

Output is accomplished by the built-in println( ) method.
println( ) displays the string which is passed to it. println( ) can be used to display other types of information as well.

The line begins with System.out.
System is a pre-defined class that provides access to the system out is the output stream that is connected to the console.

System.out is an object that encapsulates console output.
Console input and output is not used frequently in real-world Java programs and applets. Since most application are windowed and graphical in nature, console I/O is used for simple utility programs and demonstration programs.

All statements in Java end with a semicolon.
Notice that the println( ) statement ends with a semicolon.

Java is case sensitive.
If you accidentally type Main instead of main, the program will be incorrect.
Although the Java compiler will compile classes that do not contain a main() method, it has no way to execute them.

 

Public and Private Keywords 17

Other Projects to Try:

  1. Java Programs
  2. First Program in Java
  3. Threads in Java Tutorial for Beginners
  4. Socket programming in Java
  5. Declaring Classes in TypeScript Angular 2

Filed Under: Java Projects Tagged With: Java Projects

Java Programs

April 3, 2012 by ProjectsGeek Leave a Comment

                   Java Programs
Applets
Small programs designed to add interactivity to Web sites
Downloaded with the Web page and launched by the Internet browser

Servlets

Run by Web server on the server
Typically generate Web content

Applications

Programs that run standalone on a client
Developing a Java Program 

Write the source code

  • Using an Integrated Development Environment (IDE) or text editor. Save in a .java file
Compile the source code:          javac ClassName.java
  • Creates .class file
Execute the application:         java ClassName
  • Run by the Java Virtual Machine

Sample Program

 // FirstProgram.java  
  public class FirstProgram  {  
   public static void main( String [] args )  
   {  
     System.out.println (“Java Program”);  
   }  
  }  

C:\ javac FirstProgram.java
C:\java FirstProgram
Java Program

The first line of the program uses the keyword class to declare that a new class is being defined.
A class is Java’s basic unit of encapsulation.
FirstProgram is the name of the class.

The class definition begins with an opening curly brace { and ends with a closing curly brace }

All program activity occurs within a class.

The next line of the program begins the main() method.
This is the line at which the program will begin executing.
All Java applications begin execution by calling main(). Just like C and C++
Statements and expressions are similar to those in other languages, and in most cases, identical to those of C or C++.

 

Java Programs 18

Other Projects to Try:

  1. First Program in Java
  2. Public and Private Keywords
  3. Java Tutorial for beginners – Introduction to Java
  4. Introduction to Java
  5. Assembly Programs

Filed Under: Java Projects Tagged With: Java Projects

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 27
  • Page 28
  • Page 29
  • Page 30
  • Page 31
  • Go to Next Page »

Primary Sidebar

Tags

.Net Projects Download Android Project Ideas Android Projects Angular 2 Assembly Codes C # Projects C & C++ Projects C++ Projects Class Diagrams Computer Graphics Database Project Data Mining Projects DataScience Projects Datastructure Assignments Download Visual Basic Projects Electronics project Hadoop Projects Installation Guides Internet of Things Project IOS Projects Java Java Interview Questions Java Projects JavaScript JavaScript Projects java tutorial JSON JSP Projects Mechanical Projects Mongodb Networking Projects Node JS Projects OS Problems php Projects Placement Papers Project Ideas Python Projects seminar and presentation Struts

Search this Website


Footer

Download Java Project
Download Visual Basic Projects
Download .Net Projects
Download VB Projects
Download C++ Projects
Download NodeJs Projects
Download School Projects
Download School Projects
Ask Questions - Forum
Latest Projects Ideas
Assembly Codes
Datastructure Assignments
Computer Graphics Lab
Operating system Lab
australia-and-India-flag
  • Home
  • About me
  • Contact Form
  • Submit Your Work
  • Site Map
  • Privacy Policy