Java

July 19, 2006

Java bean for getting VAT values from a database table and splitting the figure over the number of transactions

InvoiceItemsVAT.java

Posted by pj at 10:35 AM | Comments (0)

July 18, 2006

Rounding monetary values to two decimal places in Java

/*Use banker's rounding to round the value to two decimal places. Multiply by 100 then use Math.rint to round to nearest integer, then finally divide by 100 again.*/

return(Math.rint(addedVat*100.0)/100.0);


Posted by pj at 04:15 PM | Comments (0)

July 12, 2006

Rapid Java Development Using Spring, Hibernate, Eclipse and Other Open Source Tools

Amazon.co.uk: Rapid Java Development Using Spring, Hibernate, Eclipse and Other Open Source Tools: Books: Anil Hemrajani

Posted by pj at 01:28 PM

May 15, 2006

Java iCalendar API

iCal4j - Introduction

Posted by pj at 10:23 AM | Comments (0)

February 23, 2006

ROME - a Java feed parser

XML.com: ROME in a Day: Parse and Publish Feeds in Java

Posted by pj at 10:10 AM

December 13, 2005

Ajax JSP Tag Library

http://ajaxtags.no-ip.info/

Posted by pj at 09:21 AM

October 07, 2005

More about Eclipse developments

ONJava.com: Eclipse Web Tools

http://www.eclipse.org/webtools/

Posted by pj at 06:21 PM

September 28, 2005

Blojsom: A Java based blog system that implements the Atom API

http://wiki.blojsom.com/

Posted by pj at 10:57 AM

June 14, 2005

Eclipse and SWeDE

I was looking for an IDE for Java development on Mac OS X yesterday and came across Eclipse:

- http://www.eclipse.org/

Had a tinker with it and it was pretty good. Then this morning I needed an RDFS or OWL editor to start designing the funding opportunities schema. Then I discovered SWeDE:

- http://projects.semwebcentral.org/projects/owl-eclipse/

This is a plug-in application for Eclipse! Hurrah!

Posted by pj at 03:39 PM