java

2009-5-8 11:25
Java Open Source is a professional website about Java open source projects, Java open source software, and development tutorials and documents. It gathers vari......
2009-5-7 21:20
Java China is committed to a specialized Java website, providing Java tutorials, J2EE tutorials, J2ME tutorials, JSP tutorials, etc., promoting and popularizin......
2009-5-4 11:11
JComponentPack is a GUI library based on Java Swing, a collection of visual JavaBeans. It is built on the MVC architecture of Swing and is a 100% pure Java lib......
2009-4-12 3:52
There are a great many IT trainings in Beijing, especially for Java. There are hundreds of them as I personally know. I hope friends who are interested in this......
2008-12-23 10:25
### 1. Simple Principles and Applications of Exception Handling Mechanisms in C++ or Java When a JAVA program violates the semantic rules of JAVA, the JAVA Vi......
2008-10-16 16:52
Discussing hot JAVA technologies, providing abundant JAVA information and JAVA resources.
2008-9-11 13:58
If you are utilizing very fragmented time, for instance, when you go shopping with your family, when you are in the car during outings, when you are waiting fo......
2008-9-10 14:33
For the development status of e-books in the Greater China market, we can see that the development on mainland China is evidently faster than in Hong Kong and ......
2008-9-8 1:38
Immediately after the second class in the afternoon, I rushed to Yuanping Gymnasium and saw the fountain that hadn't been open for a long time, as well as the ......
2008-8-18 5:40
1. Common data type conversion functions in JAVA - Convert String to byte: `Byte static byte parseByte(String s)` - Convert byte to String: ......
2008-8-15 3:19
I. Account and Password: Q: How can I get an account on China Gold Online? A: Enter the "User Center" module, select "User Registration", a password input box ......
2008-8-14 10:46
import java.awt.*; import java.io.*; import java.awt.event.*; public class Example {
2008-8-10 16:49
From: *Core Java Volume I* Suggestion for implementing `equals`: ```java @Override public boolean equals(Object other) { ```
2008-8-9 22:6
JNode is the abbreviation of Java New Operating System Design Effort. It is an operating system developed primarily in Java (with a small part of the kernel wr......
2008-8-9 15:39
nana2008426 [Recommendation] A must-practice part for office workers every day. The neck is the most important area that office workers should exercise. Repeat......
2008-8-9 10:35
JNode is the abbreviation of Java New Operating System Design Effort. It is an operating system primarily developed in Java (with a small part of the kernel wr......
2008-8-7 13:34
The coding style in the program makes our programming work easier, especially for program maintenance personnel who often need to read code written by others. ......
2008-8-7 13:20
Carlos Perez (a renowned Java technologist) recently published a list of five Java technologies he believes are worth learning in 2008. They are: OSGi (a dyna......
2008-8-7 13:19
Part One: Security Configuration and Code Encapsulation ### Security Configuration The configurations of both platforms are achieved through XML or plain tex......
2008-8-7 13:17
Purpose: Convert the interface of a class into another interface that the client desires. The Adapter pattern allows classes to work together that otherwise co......
2008-8-5 16:7
This plugin enables Google Desktop Search to index JAVA source files. It includes syntax coloring in the cache.
2008-8-5 15:48
Quickly convert a 1-minute Java program to run as a Windows service 1. First, download the latest version of **Java Service Wrapper**, click here to download......
2008-8-5 15:32
I. DOM (Document Object Model) Defines a set of interfaces for the parsed version of an XML document. The parser reads the entire document and then bui......
2008-8-5 15:22
In JDK 1.4: ```java Map map = new HashMap(); Iterator it = map.entrySet().iterator(); while (it.hasNext()) { Map.Entry entry = (Map.Entry) it.next(); ......
2008-8-3 17:19
You can turn a regular Java program into a true exe, meaning a single exe file that can run on machines without the JVM installed. Common tools for this includ......
2008-8-3 17:14
Problem Description: After completing the development of a Java program and packaging it into a Jar file for release, you may find that images and text files......
2008-8-3 16:52
The method for connecting Java to an Oracle 10g database is as follows: 1. In Eclipse, you need to add **E:\oracle10g\oracle10g\jdbc\lib\ojdbc14.jar** first. ......
2008-8-3 16:51
I wrote an Excel file using JXL, and it turned out quite refined. It includes inserting images, setting fonts, centering text, merging cells, and more. You can......
2008-8-3 16:41
"This is changeable, it follows the thing after 'new', while 'super' is fixed." "In the parent class: when 'this' is used, it refers to the instance created b......
2008-8-3 16:23
Arithmetic exception class: ArithmeticException Null pointer exception class: NullPointerException Type casting exception: ClassCastException Negative......