Belenix Documentation linked my blog post
Updated: Belenix 0.7, Ubuntu 8.04 and Sun xVM Virtual Box 1.6
My blog post Installing Belenix 0.7 with VirtualBox on Ubuntu 7.04 has been linked from the Belenix official documentation, Yay!
Updated: Belenix 0.7, Ubuntu 8.04 and Sun xVM Virtual Box 1.6
My blog post Installing Belenix 0.7 with VirtualBox on Ubuntu 7.04 has been linked from the Belenix official documentation, Yay!
del.icio.us is a bookmarking service where you can save, share your favorite/useful URL’s.
It has a REST API: http://del.icio.us/help/api/. Using this API you can design clients (web/desktop) to use the service. NetBeans 6.1 comes bundled with the APIs for popular web-services, which includes del.icio.us.
In this post, I shall code a simple Java console client for del.icio.us to fetch your recent posts. (For details, please refer ‘https://api.del.icio.us/v1/posts/get?‘ at http://del.icio.us/help/api/posts)
You may download the complete NetBeans 6.1 Beta project here
Needless to say, you will need a del.ico.us account to follow this post.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package deliciousclient;
/**
*
* @author amit
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
getPosts();
}
private static void getPosts() {
}
}
private static void getPosts() {
try {
String tag = "xml";
String dt = null;
String url = "";
String result = DeliciousService.getDeliciousPostsGetResource(tag, dt, url);
System.out.println("The SaasService returned: "+result);
} catch (java.io.IOException ex) {
//java.util.logging.Logger.getLogger(this.getClass().getName()).log(java.util.logging.Level.SEVERE, null, ex);
ex.printStackTrace();
}
}
username=amitkumarsaha
password=password
Thus, we have seen how easy it is to design a del.icio.us client using NetBeans 6.1. Similarly the other APIs can also be explored!
API Documentation
Happy NetBeaning!