Archive for 'java'
Another CSV library is born
After getting tired of so many half-baked CSV Java libraries, I decided to write my own.
http://code.google.com/p/jcsvlib/
I challenge you to find a competitor library with:
an uglier name, or;
simpler to use.
Posted: April 17th, 2009 under java, technology, *Posts in English.
Comments: none
Start learning JCR and Apache Jackrabbit
If you would like to get your hands dirty on content repositories in Java, but found no help to start, maybe the essay I wrote for the Cambridge Technology Partners Java blog can be of your interest.
It shows how to create the initial environment for a simple Java web project, so you can use it […]
Posted: September 26th, 2008 under howtos, java, technology, *Posts in English.
Comments: none
Real-time shared edition with Eclipse Ganymede
The new Eclipse 3.4 release (the simultaneous release of a bunch of subprojects is tagged “Ganymede“) includes a feature which allows you to share your editor with a friend online. A screencast presenting the feature can be found here.
Posted: June 27th, 2008 under java, technology, *Posts in English.
Comments: 1
Nas malhas do meu spam
URGENTE: Vaga Analista Programador Java Desenvolvimento
Conhecimentos requeridos: em desenvolvimento J2EE, EJB, EJP, e MVC, Frameworks, hibernate, vivência com designer-parttners, single tom, glossfish, portlets federados e webservices. Comprometimento e iniciativa, dinamismo e criatividade e senso de urgência
Glossário:
designer-parttners: O seu parceiro, sexual ou não, tem que ser designer.
single tom: […]
Posted: February 26th, 2008 under funny, java, *Textos em Português.
Comments: none
Eclipse hint - Singleton quick create
Let’s make singleton creating in Eclipse easier. Go to “Window>Preferences…” and navigate through the following structure: “Java>Editor>Templates”. Click “New…” and put ‘singleton‘ in the “Name” field. In the “Pattern” field, put the following code.
/**
* Singleton
*/
private static final ${enclosing_type} instance = new ${enclosing_type}();
public static ${enclosing_type} getInstance() {
return instance;
}
private ${enclosing_type}() {}
Now, to create singleton classes, all you […]
Posted: May 14th, 2007 under howtos, java, technology, *Posts in English.
Comments: none
Wanna learn GWT?
Do you want to learn how to use Google Web Toolkit? So you may be interested in this article I wrote. It’s a tutorial that explains how to use GWT from scratch, and will take not more than 30 minutes to accomplish.
Posted: April 8th, 2007 under java, technology, *Posts in English.
Comments: none


