Posts

Showing posts from January, 2011

JavaScript & Flash Upload Library

Guys, http://code.google.com/p/swfupload/ SWFUpload is a JavaScript Library that wraps the Flash Player's upload function. It brings your uploads to the next level with Multiple File Selection, Upload Progress and Client-side File Size Checking. Unlike other Flash upload tools, SWFUpload leaves the UI in the developer's hands. Using a set of event handlers developers can display upload progress and status to the user in their own HTML/CSS UI. Example http://demo.swfupload.org/v220/index.htm

Protocol Buffers - Google's data interchange format

Guys, It's too late in india, but I have found document base database, no Sql :) MONGODB MongoDB stores documents (objects) in a format called BSON . BSON is a binary serialization of JSON -like documents. BSON stands for “Binary JSON”, but also contains extensions that allow representation of data types that are not part of JSON. The MongoDB client drivers perform the serialization and unserialization and BSON is a language independent data interchange format. BSON can be compared to binary interchange formats, such as Protocol Buffers . BSON is more “schemaless” than Protocol Buffers What is Protocol Buffers ? Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. http://code.google.com/p/protobuf/ http://www.mongodb.org http://bsonspec.org/ Good night .. Pankaj.

Generate PDF output

Hey guys, to generate PDF document using java language, we are always thought about an iText third party tool but .. recently i came across the apache (big community & lots forums,blogs it have)'s one tool as below one Apache FOP : Apache FOP (Formatting Objects Processor) is a print formatter driven by XSL formatting objects (XSL-FO) and an output independent formatter. It is a Java application that reads a formatting object (FO) tree and renders the resulting pages to a specified output. Output formats currently supported include PDF, PS, PCL, AFP, XML (area tree representation), Print, AWT and PNG, and to a lesser extent, RTF and TXT. The primary output target is PDF. http://xmlgraphics.apache.org/fop/ Posted location : schomberg,germany