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.

Results 1 to 4 of 4

Thread: Is this project realistic?

  1. #1
    Junior Member
    Join Date
    Apr 2012
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Is this project realistic?

    Hello to all you java developers!

    Im in my 2nd year of java programming and i think it is time for me to make a "real program".
    So i decided to try to make a java-program for handling orders to various suppliers. The goal is that i can be used by my farther so he easily can order products from his suppliers at work. So my question before i begin is, is it even possible can the Java language do this is the project realistic?

    The program:
    -Swing GUI
    -Installable from on a windows platform using a .exe
    -Import product+product numbers (from xml file) from the suppliers
    -Search for the products when ordering
    -Save orders so they later can be re-loaded and checked upon product arrival.
    -Have a costumer database with name/number and date of ordering, so we know who to contact upon product arrival.
    -Save and load unfinished orders, since we have various suppliers and only sends out orders twice a week.

    -There must be a database (preferred SQL) for saving data. Should/can this be local or do i have to find a SQL host? The client PC will be online at all time.

    I hope you can help me or point me in the right direction. Maybe a more powerful or suitable language exists?

    I thank you in advance.

    /Jaze


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: Is this project realistic?

    The best advice I can give you is to start small and work in tiny incremental steps. It's good to have an overall picture of your end goal, but you have to break that picture up into much smaller pieces- you've started to do that already.

    All of those things are certainly possible in Java (although I don't understand why installation from an exe is a crucial piece.. why restrict people on other platforms from using your program?). So now it's a process of breaking them down even further, prioritizing, and working through them without letting feature creep ruin you (stop yourself from getting carried away with "but wouldn't this other thing be cool!" before you finish the first thing you're working on). Good luck!
    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!

  3. #3
    Junior Member
    Join Date
    Apr 2012
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Is this project realistic?

    Thank you KevinWorkman!
    I get your point about being carried away. The reason for doing the installation from an exe, is only because i want the program to be and look "professional". Until now i have only made small java programs that would run in Eclipse, and for this program i wanted a desktop icon for launching the program and for that i simply assumed that some sort of installation would be necessary.

  4. #4
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: Is this project realistic?

    Quote Originally Posted by j4ze View Post
    Thank you KevinWorkman!
    I get your point about being carried away. The reason for doing the installation from an exe, is only because i want the program to be and look "professional". Until now i have only made small java programs that would run in Eclipse, and for this program i wanted a desktop icon for launching the program and for that i simply assumed that some sort of installation would be necessary.
    Fair enough. But I would put that as a lower priority than the main pieces of the program. You could deploy it as a Web Start application or an applet for the time being- that way if your dad likes it, he can recommend it to his friends, etc. But it's really up to you.
    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!

Similar Threads

  1. need help on my project..
    By jikoy in forum What's Wrong With My Code?
    Replies: 10
    Last Post: March 21st, 2012, 11:57 AM
  2. Uni project - help please :)
    By sameer in forum Java Theory & Questions
    Replies: 0
    Last Post: November 6th, 2010, 10:54 AM
  3. Project - Please Help
    By toxikbuni in forum Java Theory & Questions
    Replies: 0
    Last Post: April 20th, 2010, 09:58 AM
  4. Need Help With Project
    By jstew132 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: November 11th, 2009, 07:15 PM
  5. Need a project
    By helloworld922 in forum Project Collaboration
    Replies: 6
    Last Post: July 31st, 2009, 08:30 AM