Java

TwitterFacebook
Get flash to fully experience Pearltrees
Oracle Oracle Technology Network > Java Article Why, Where, and How JavaFX Makes Sense CaptainCasa moved from Swing to JavaFX for front-end infrastructure, explaining that implementing an employee desktop front end with native technology is a valid approach and that JavaFX is a good fit. http://www.oracle.com/technetwork/java/index.html

Discover the secrets of the Java Serialization API

unnamed pearl

by Matthew Ford, 1st January 2005 (revised 13 th August 2009 to remove dead links) ©2005-2009 Forward Computing and Control Pty. Ltd. NSW Australia All rights reserved. Abstract http://forward.com.au/javaProgramming/HowToStopAThread.html

An Overview of RMI Applications (The Java™ Tutorials > RMI)

http://download.oracle.com/javase/tutorial/rmi/overview.html RMI applications often comprise two separate programs, a server and a client. A typical server program creates some remote objects, makes references to these objects accessible, and waits for clients to invoke methods on these objects. A typical client program obtains a remote reference to one or more remote objects on a server and then invokes methods on them. RMI provides the mechanism by which the server and the client communicate and pass information back and forth.
1. Which of the following are valid definitions of an application’s main( ) method? a) public static void main(); b) public static void main( String args ); c) public static void main( String args[] ); d) public static void main( Graphics g ); e) public static boolean main( String args[] ); 2. http://www.techinterviews.com/64-java-questions-for-any-job-interview

64 Java questions for any job interview

Producer consumer in Java 2 : Producer Consumer « Threads 

http://www.java2s.com/Code/Java/Threads/ProducerconsumerinJava2.htm /* * Copyright (c) Ian F. Darwin, http://www.darwinsys.com/, 1996-2002. * All rights reserved. Software written by Ian F.
by Gunnar Sletta In addition, Qt Jambi provides the Java User Interface Compiler (JUIC), its own tailored version of Qt's user interface compiler. JUIC makes it possible for Java developers to take the advantage of Qt Designer , Trolltech's tool for designing and building graphical user interfaces from Qt components, by converting Qt Designer 's user interface definition files to Java source files. In this article we will take a closer look at Qt Jambi to see how the Qt framework is integrated with Java. We will do this by writing a small example application. The application is a game called , inspired by the arcade classic of a similar name, where the player scores points by using a paddle to bounce a ball against a brick wall in an attempt to demolish it brick by brick. http://doc.trolltech.com/qq/qq20-jambi.html

Meet Qt Jambi

How to make use of runtime class information in Java programs By Bill Venners, JavaWorld.com, 02/01/99 One of the cool things about Java's object model is that Java objects are "conscious": given a reference to an object, you can get information about that object's class. This "runtime class information" makes possible all kinds of interesting designs and implementation techniques. But how are we to use this capability? When I think about Java's support for runtime class information, two clichés come to my mind: http://www.javaworld.com/javaworld/jw-02-1999/jw-02-techniques.html

Design with runtime class information

Cobra: Java HTML Parser & Viewer (Open Source)

Cobra: Getting Started This page provides an overview of the Cobra API and tips for getting started. Test Program http://lobobrowser.org/cobra/getting-started.jsp

Java Tip 70: Create objects from jar files!

Combine a custom ClassLoader with a JarResources manager to instantiate classes stored in jar files By John D. Mitchell, JavaWorld.com, 03/01/99 In Java Tip 49 , (coauthored with Arthur Choi) we learned how to extract Java resources from jar (Java Archive) and zip archives, and in Jack Harich's Java Tip 39 , we learned how to create custom class loaders to load class files via the local filesystem or the network. http://www.javaworld.com/javaworld/javatips/jw-javatip70.html