converter

Google Translate API in Java

This APi is not official Google API but an open source project hosted at google code. This API provides a simple, unofficial, Java client API for using Google Translate. You can download the jar file and include it in your path for using it. Below is the example code which i used to convert set [...]


XML (Extensible Markup Language) Overview – including DTD, XML Schema, XSLT, CSS

A good overview of XML (Extensible Markup Language) in which most of the concepts around it are also touched in a nice manner like DTD, XML Schema, XSLT, CSS etc. Working in the web world makes in mandatory that you know about XML and all so this presentation can be useful for all those people [...]


URLEncode and URLDecode

URL Encoding is used when placing text in a query string to avoid it being confused with the URL itself. Some times you need to pass data from browser to web server in query string and data may be having some text which may confuse web server. URL encoding is normally performed to convert data [...]


Google Language Tools – Language Translation

Language translation is very much required when you need to use some information in other language or you need to communicate in other language. It is very useful for people who want to travel, do business with people of other languages and communicate. Take an example of website who sells some goods and take orders [...]


Audio files handling in Java – javax.sound.sampled.AudioSystem

Problem: Few days before i wrote a post about converting audio media file to different format using SoX. I also mentioned one limitation of Sox that it does not convert audio file formats and resample it when rates are same in input and output and gives following error: sox: Input and Output rates must be [...]