One of my projects is studying on how to convert any documents in Word, Excel or Powerpoint formats into FLASH format which is viewable by most browsers with flash plugin.
Continue reading ‘Convert documents into flash, a web-viewable format’
about ajax, javascript, DHTML, CSS, web app, MySQL, PHP, JSP, Java, Oracle and Howtos
One of my projects is studying on how to convert any documents in Word, Excel or Powerpoint formats into FLASH format which is viewable by most browsers with flash plugin.
Continue reading ‘Convert documents into flash, a web-viewable format’
The Java or JDK comes with NO support of any official API for FTP connection. But there is an internal that comes in the sun.net package, but this is NOT well-documented, and you will hardly find how to use other methods within the sun.net.ftp.FtpClient class.
Continue reading ‘A simple Java FTP connection + file download and upload’
Looking for way how to program a file upload in the AJAX manner? Here you go, using JavaServer faces, with those cool taglibs, which you get a progress bar and the a file chooser. And the file is being uploaded in AJAX mode. You’ll be shown a progress bar of the uploading status.
Continue reading ‘Handling ajax upload the Java way : Using Java server faces and servlet’
Many of you might have known Spring as a J2EE framework that simplifies J2EE development by introducing the MVC (Model View Control) development methodology in J2EE.
Continue reading ‘Spring WebFlow 2.0 now includes JavaScript module’
In a full-fledged Object Oriented Programming language such as Java, method overloading is the technique that you could use to create few functions or methods that having the same names but taking different arguments or parameters. Such as follows, the method findUser(), findUser(String), findUser(String, String) in Java.
public Collection findUser(String name)
{
// the findUser(String) is a method that returns the users matched
// by the specified name,
// result returned in a java.util.Collection object
}
public Collection findUser(String firstMame, String lastName)
{
// the findUser(String,String) is a method that
// returns the users matched by the specified
// first and last name, results returned in a java.util.Collection object
}
}
Continue reading ‘Method Overloading is possible in JavaScript!’
What is Prototype? Prototype is a JavaScript framework that simplifies AJAX coding and extends the DOM structure. Prototype comes with several short-cut coding methods and modules to allow you to shorten your AJAX coding and it’s browser-safe. Prototype is now available with the latest version, 1.6 for download.
To start using Prototype in your web apps, it’s easy, just download the prototype.js file and include it in any JavaScript tag pairs shown as follows then you can start using the simplified coding in AJAX offered by Prototype.
Continue reading ‘Prototype – a fantastic JavaScript Framework, simplifies Ajax coding’
Recent Comments