Comment changer la couleur de fond de la ligne en cours de debug
How to change highlight color in debug eclipse
-
http://stackoverflow.com/questions/211500/eclipse-where-to-change-the-current-debug-line-backgroundPour résoudre l'erreur au lancement d'eclipse : Job found still running after platform shutdown eclipse
-
http://www.metod.si/job-found-still-running-after-platform-shutdown-eclipse/Presentation des buffer en java du package nio
-
http://monge.univ-mlv.fr/~duris/RESEAU/nioX4.pdfBon cours simple sur socket, voir partie UDP
-
http://ouvea.edu.ups-tlse.fr/~torguet/cours/l3rx/SupportSockets.htmlChanger la taille de la ligne qui est imposé quand on formatte une page : ctrl+shift+f
-
http://www.winksaville.com/blog/java/eclipse-line-wrapping-and-indentation-when-formatting/Tres bon site avec des articles sur le web/html/css
Joli design en +
-
http://www.creativejuiz.fr/blog/Comment récupérer les parametres passés en get à l'appel d'un zul
On peut les récupérer dans le ZUL ou dans le JAVA associé
-
http://www.zkoss.org/forum/listComment/10366Java : Comment itérer sur une hashmap
Map<String, String> items = new HashMap<String, String>();
//fill map with String, String values
…
for (Map.Entry<String,String> entry : items.entrySet()) {
String key = entry.getKey();
String value = entry.getValue();
//do stuff here
}
-
http://timothypowell.net/blog/?p=177