Java_advanced

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.jpackage.org/index.php

:: JPackage Project | Home ::

We focus on free and open source software whenever possible. For convenience, we also provide non-free packages without the restricted source code. Our RPMs are generic in that they should work on any RPM based Linux distribution (Mandriva, Red Hat, SuSE, others).
http://humbert-florent.developpez.com/java/reseau/avance/#LIV-D

Réseau monothread en Java

Ce cours introduira les notions pour permettre la gestion du réseau en Java à l'aide de la bibliothèque standard Java.
In this section I will give a general introduction to the the Jena2 ontology API. I'll also describe a range of common user tasks. I won't go into all of the many details of the API here: you should expect to refer to the Jena2 Javadoc to get full details of the capabilities of the API. http://jena.sourceforge.net/ontology/

Jena tutorial

Lorsque vous compilez votre code Java à l'aide de javac par exemple, le code résultant de cette opération est appelé byte-code .Cecode compilé peut-être exécuté par n'importe quelle JVM répondantauxspécifications de SUN, de plus le format de ce code binaire estindépendant du matériel et de la plateforme sur laquelle il estexécuté. Le code peut-être, mais pas nécessairement, contenu dans unfichier (avec généralement l'extension .class ). http://www.javafr.com/tutoriaux/JAVA-BYTECODE-COMPRENDRE-RESULTAT-VOS-COMPILATIONS_110.aspx

JAVA ET LE BYTECODE : COMPRENDRE LE RÉSULTAT DE VOS COMPILATIONS, Tutoriel N°110,

Annotations (The Java™ Tutorials > Learning the Java Language > Classes and Objects)

http://docs.oracle.com/javase/tutorial/java/javaOO/annotations.html Annotations provide data about a program that is not part of the program itself. They have no direct effect on the operation of the code they annotate. To add this same metadata with an annotation, you must first define the annotation type . The syntax for doing this is: @interface ClassPreamble { String author(); String date(); int currentRevision() default 1; String lastModified() default "N/A"; String lastModifiedBy() default "N/A"; // Note use of array String[] reviewers(); } The annotation type definition looks somewhat like an interface definition where the keyword interface is preceded by the @ character (@ = "AT" as in Annotation Type).

optimization java

http://www.club-java.com/Public/JavaTechno/Fichiers/JAVA/Optimiser.htm Programmez : Optimisez Java (8)