There are many file sharing utilities available free of cost, however most of them rely on uploading the content to server and dowloading from the server.
But a new online tool Sendoid solves the problem without any need for intermediate servers. Ya, its Peer to Peer communication.
Its just works in simple way.
1. Sender select a file to share in sendoid.com
2. Sendoid creates a link to your local file
3. You send the link to receiver
4. Receiver access the link to initiate the file download
5. Sender and Receiver remain online until the sharing completes
You can also achieve unlimited file size by downloading their desktop app.
Explore at
Sendoid
Tuesday, March 22, 2011
Sunday, March 6, 2011
ThinkVitamin
It offers wide variety of online classes and tutorials for web designers and developers.
ThinkVitamin
ThinkVitamin
Powerful alternative to Java Date API
Java Date API is inherently so buggy. If you are looking at the source code, you will really regret how you can rely on that.
If you really want to work with Dates extensively, consider using Joda Time API. Its free and wonderful.
Joda Time
If you really want to work with Dates extensively, consider using Joda Time API. Its free and wonderful.
Joda Time
Serializing Java MimeMessage
Why doesn't the MimeMessage class implement Serializable so that I can serialize a message to disk and read it back later?
The JavaMail API was designed to layer on top of existing email systems, using existing message formats. The ability to use Java serialization was neither essential nor useful for such implementations, and thus was not considered a goal of the JavaMail API.
The hard part about serializing a Message is retaining the pointers to the Folder, Store and Session. If you only want to save the content of the message, and not the object itself, the writeTo method of a message gives your everything you need. If you want to create an entire email system based on serialized messages, you should be able to subclass Message et. al and implement Serializable in your subclass.
If you want to serialize other objects of your own that reference MimeMessages, the writeObject method of your object can use the writeTo method of MimeMessage, and the readObject method of your object can use the MimeMessage constructore that takes an InputStream. Your class will need to provide a Session when constructing the MimeMessage.
Subscribe to:
Posts (Atom)