Text To Speech (TTS) in JAVA

No comments June 30th, 2009

Festival, it allows us to convert Text to Speech (TTS) in wav format. In this article we will learn on how we can perform TTS from Java applications.
Continue reading…

Subscribe to my RSS feed.

Execute Java Code From Shell Script

No comments June 25th, 2009

Sometimes it becomes necessary to execute the java code from console but we cannot write everytime the whole java command including the classpath and properties in the console. There has to some easy way by which we can execute the java code from console. Similar to batch files that we have on windows linux has shell scripts that can run on console. In this article we will learn on how we can execute java code from shell script.
Continue reading…

I Like Linux but Loved Windows

5 comments June 2nd, 2009

I used to use Microsoft Windows for past 10 years and was quite addicted to it but recently due to job requirement i have switch to Linux operating system and was quite impressed with the Linux on the ease of development and use. But still there are few things which make Microsoft Windows go ahead of Linux.
Continue reading…

Tracking User Session in Apache log4j

No comments May 28th, 2009

Apache LOG4J is used for logging in Java but apart from logging we can also set value inside log4j that can appear in all the logs getting generated. This will help us in debugging complex distributed applications. In this article we will use this technique to keep track of users activity during the login session.
Continue reading…

How to Implement Text to Speech in PHP

5 comments April 23rd, 2009

I am now become a fan of Linux Operating System. It has all the variant of softwares available either Open Source or Commercial version, and the most important is that the software also runs from command console that means we can run the application from our web application. One such application is Festival, it allows us to convert Text to Speech(WAV) format. In this article we will learn on how we can convert text to speech from PHP applications.
Continue reading…

Factory Design Pattern in Java

5 comments April 8th, 2009

Factory pattern comes into creational design pattern category, the main objective of the creational pattern is to instantiate an object and in Factory Pattern an interface is responsible for creating the object but the sub classes decides which class to instantiate. It is like the interface instantiate the appropriate sub-class depending upon the data passed. Here in this article we will understand how we can create an Factory Pattern in Java.
Continue reading…