Showing 1-50 of 165 results
Java games are computer games written in the computer programming language "Java." Java games can be as complex as the shoot-'em-up three dimensional games written in other languages, or as simple...
In Java's Swing GUI library (as well its precursor AWT), the arrangement of components within a frame or panel is determined by an implementation of the LayoutManager interface. The LayoutManager...
Modeling a solar system in Java, besides being fun, is a good exercise to illustrate and practice thinking in terms of some basic concepts in Object Oriented Design (OOD), especially inheritance...
The Java programming language is designed to run through a "virtual machine." This is unlike languages such as C, where a program is written and compiled for a specific architecture and operating...
Java is an object-oriented programming language used to create applications in one environment that can run in another environment without needing to be recompiled. Because it is object oriented,...
Java applets are programs with a tightly defined purpose that run in Internet browsers or other containing programs. Running applets is usually as simple as pointing your browser to a web page...
A common mistake made by new programmers is to store all collections of data in simple arrays. While the basic array is a great data structure, it has a number of weaknesses that can be avoided by...
If you lose the BIOS password of a desktop computer, the solution is simple--remove the battery backup for the BIOS and your password is deleted. Unfortunately, in the case of the Toshiba Tecra M2...
Java is one of the most commonly used coding language in use as of 2009. Applets ranging from games to complex queries are run on Java and its Runtime application. But as with every coding...
Creating a video game is not a trivial task, but the process can be thought of as a series of simple steps. I recommend using the Java programming language, especially if you are new to...
The Java Developers Kit includes a package known as the Java Database Connectivity API, or the JDBC for short. This provides a single interface for interacting with any database package that...
Java applets are graphical computer programs written in the object oriented language of Java. Java applets, like applets written in other programming languages, require a host container, such as a...
The Java Database Connectivity (or JDBC) API is a set of standard classes designed to provide a single unified interface for connecting to all major database solutions. Supported databases for the...
Java applets are programs written in the Java language that run in a web browser or other applet viewer. Applets have a graphical user interface (GUI), unlike the console applications that you...
Randomly generated numbers have many uses in computer programs, such as creating unpredictability in games, modeling simulations and performing encryption. Java provides two techniques for...
Java is a programming language you can use to build a variety of applications, whether you are doing database work, network-intensive tasks or graphics applications. Java programming is...
The refletion API a power full tool in java learn how to use it simply
The Java language keeps track of time entirely in terms of the number of milliseconds that separate a moment from midnight, January 1, 1970 UTC and stores this value as a long (64 bit) integer....
learn how to use java.Inthis articlae you will get to know all the basic things you need to get started
An exception occurs when an abnormal situation (such as an error or problem) occurs that a method is unable to handle. The method exits by "throwing" an exception, communicating to the calling...
To improve the graphical quality of your Web browser, you should download and install Java. With Java, you can see images and videos with much better clarity than you can without it. Once you've...
Learning a new programming language is often challenging. Learning and mastering Java---an extensive language with seemingly endless classes, packages, frameworks, APIs, technologies, acronyms,...
The Java Database Connectivity (JDBC) Application Programmer Interface (API) provides classes for connecting to and accessing tabular data, including relational databases. The ResultSet class...
ActionListener is a library of classes that gives Java developers a method of capturing events. An event is fired whenever a user interacts with an application. For instance, clicking a button...
The Java API provides you with a large library of standard classes that exist to make tasks--which would be complicated and time-consuming under languages such as C--become relatively fast and...
One of the features of the Java programming language is the large library of standard classes for solving routine programming tasks with relative simplicity. The idea is to allow programmers to...
Creating XML files is used by programmers who want to create dynamic pages from Java code. XML files can be used to import values into a database, or they can be used to display lists of data to a...
This will help you set up a class that will be able to compute if a number is prime or not very quickly. This is a VERY useful class to keep in your own library as it will help you solve several...
Java Server Pages (JSPs) are designed to run from a Web server and give Java programmers the ability to dynamically create Web pages in response to client or other computer requests. JSPs use...
Java is an object oriented language, which means that programming in Java involves working with virtual objects. Java needs blueprints to create these objects. Those blueprints are called classes....
Java Arrays are data structures containing objects of the same type. A String array can only contain Strings and a Car array can only contain car objects. Arrays are used to store objects that...
The Java programming language was unique when it was first released in the mid 1990s in that the language was designed to be a hierarchy of classes. Unlike C++, which extended the C programming...
What is an XSD, or commonly called an XML Schema? An XSD is an easy way to diagram your objects in a project. If you're still not sure what I'm talking about you may not have any need for this...
Jakarta Struts is an Apache-sponsored, open-source, Java Enterprise-based development framework that builds on the Java Servlet programming libraries. Struts uses Java Servlets to create content...
The Java programming language includes the JDBC programming library that allows a developer to make database-driven server and client-side programs. JDBC is also incorporated in the NetBeans Java...
Java Struts is an Apache-based, open source framework used to build Web-based programs that utilize the Java family of Web technologies. Java Struts makes use of the Model View Controller (MVC)...
Public key cryptography (PKI) is used on the Internet to permit secure business transactions and provide a secure environment on the Web when required. One method of using PKI is a combination of...
Java's JDBC framework gives developers a powerful way to interact with databases. One of the tools provided is the PreparedStatement class. PreparedStatements can be used to execute any kind of...
JavaBeans is the name for the component architecture structure for the Java 2 Platform, Standard Edition. Sun labeled its predefined component structure JavaBeans to differentiate the Java...
Java Servlets refer to Java programming language objects that are used to take requests from users or other computer systems dynamically and send appropriate responses. The Java Servlet Applied...
Because Java is platform independent, Java applets are common programs that run on web pages. With a little programming experience and practice, they are fairly easy to write.
Ssometimes function and method are used interchageabley. They are virtually the same. The correct terminology for Java is method. It is a set of commands that can be used over again. In this,...
The Java programming language was developed in the mid-1990s by Sun Microsystems. Java programs can run on any operating system that supports the programming language through the use of a common...
The Java programming language was developed in the mid-1990s by Sun Microsystems. Java programs can run on any operating system that supports the programming language through the use of a common...
A Java Language stack overflow occurs when the size of memory required by the stack of the Java program is greater than what the Java Runtime Environment has configured for the application. Stack...
The Java Virtual Machine (JVM) is the execution component of the Java Runtime Environment (JRE) that interprets and executes the byte code stores in a Java class. Within the Java Virtual Machine...
The Java programming language is well-known for incorporating object orientated programming from the start. Everything in Java is based on the object model. As a result, Java has a large number of...
Ever since version 1.1, Java has come the tools you need to format a Date in just about any way you could want. With a little bit of knowhow and one or two lines of code, you can have the build...
Embedded software supports computer systems that are designed to perform a small number of dedicated functions in a hardware or mechanical device. Embedded systems can be found in a wide range of...
Java Web Start is an application "helper" deployed by Sun Microsystems with the Java Runtime environment. It is designed to help application developers deploy software written in Java that do the...