Hello buddies, am tryin to design an application that can host files. upload and download files of at least 20mb. Is it possible with Java? Any useful ideas! Thanks.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hello buddies, am tryin to design an application that can host files. upload and download files of at least 20mb. Is it possible with Java? Any useful ideas! Thanks.
An application doesn't host files. It can serve as an interface to a host (a webserver, a database, whatever), but it doesn't really make sense to say that an application is hosting files. Step one is figuring out what your actual host is, then you can work on the interface to that host.
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!
KevinWorkman. Thank u so much 4dat brilliant comment. So if my host is database. Ao do i initiate java 2handle that. Am new 2java. Thanks.
Please see the link in my signature on asking questions the smart way, especially the bit about using proper spelling and grammar. Many of our members don't speak English as a first language, so your abbreviations can be confusing. Plus it comes off as lazy when you're on a technical forum.
There are plenty of ways to connect to a database from Java. I'd start with a google search and this tutorial: Lesson: JDBC Basics (The Java™ Tutorials > JDBC(TM) Database Access). You also might want to look into Hibernate.
Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!