Skip to main content

Posts

Showing posts from July, 2008

SlChart Open source Jsp Tag Library for Creating Data Grids

About SlChart Author: - Chandima prabath ariyarathna SlChart is a Jsp Tag Library for creating data tables in different format. SlChart table can use any jsp project. It is very easy to use. This tag library contains main two attribute. 1. id :- Bean id name 2. viewMode :- Data grid view mode (ex:- html,htmlGrid,xml) More Details Download Tag library with Documentation

English Sinhala Dictionary for the Firefox

University of Colombo School of Computing Language research lab lunched the English-Sinhala dictionary for the Firefox. New release lunch for the firfox3. It is very help full project to all and UCSC language research lab done by other great project for the localize software. It is one of the best language research lab in the Asia. UCSC is the one of the main Foss contributor in the Sri Lanka. There are other lot of open source research are currently doing by the UCSC . This Firefox plug-in is very easy to install. For more Information Visit:- UCSC language reseurch lab Download plug in

Java Source code to print Hello world without semicolon

Try to this code if(System.out.printf("Hello world")==System.out.printf("")) { } Try to this code if (System.out.append("hello world ") instanceof Object) { } Try to this code try { if (System.out.getClass().getDeclaredMethod("println", Class.forName("java.lang.String")).invoke(System.out, "HelloWorld ") ==null) { } } catch (Exception e) { } } } Try to This Code This code wrote by Asanka Priyanjith public class MainClass { public static void main(String[] args) { if(System.out.printf("%s", "Hello world") != null){ } } }