Connect with Facebook Lost Password?


Go Back   CodeCall Programming Forum > Software Development > Java Help

Java Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 10-02-2008, 03:11 AM
Newbie
 
Join Date: Sep 2008
Posts: 2
Rep Power: 0
fcojavierperez is an unknown quantity at this point
Default Java gui application

Hello everybody!

I have to develop a GUI in Java and I am totally rookie on this (Java & GUI development). What I would like to know is whether there is a kind of GUI Builder for Java with free license. I mean, a program which makes me easier to choose where to put the different menus and buttoms of the GUI.

I explain you a bit more. The IDE that I have to use is Eclipse. The GUI that I have to implement will be done in Java, but what I have to do is to convert a XML file in the GUI (read, parse?). This way I will be able to modify the XML using the GUI and then save the file again (this way the XML file will have been modified). I am working in a windows environment in spite of the GUI will be able to work in Linux too (thanks to a Java VM).

Thank you very much for your answers! And remember, I need a free license program.

Fran.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 10-02-2008, 09:11 AM
Guru
 
Join Date: Jan 2008
Posts: 1,648
Blog Entries: 4
Rep Power: 19
morefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nice
Send a message via AIM to morefood2001 Send a message via MSN to morefood2001 Send a message via Yahoo to morefood2001 Send a message via Skype™ to morefood2001
Default Re: Java gui application

Java will run on any platform unless natively compiled for a certain platform (a bit advanced for what most would need).

making a java applet isn't that hard, so I have no idea why you would want to use a gui kit like visual basic .NET has for windows apps.

Anyways, I am unaware of any free programs, however Mars has this program that you can Download here.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 10-02-2008, 09:22 AM
Newbie
 
Join Date: Sep 2008
Posts: 2
Rep Power: 0
fcojavierperez is an unknown quantity at this point
Thumbs up Re: Java gui application

Thank you very much morefood2001, but I have decided to use Swing in order to learn Java too. Thanks a lot!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 10-02-2008, 09:37 AM
Guru
 
Join Date: Jan 2008
Posts: 1,648
Blog Entries: 4
Rep Power: 19
morefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nicemorefood2001 is just really nice
Send a message via AIM to morefood2001 Send a message via MSN to morefood2001 Send a message via Yahoo to morefood2001 Send a message via Skype™ to morefood2001
Default Re: Java gui application

Thats a good choice, swing isn't that hard to master and you will understand java much better for future projects
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 10-03-2008, 02:05 PM
Xav's Avatar   
Xav Xav is offline
Code Slinger
 
Join Date: Mar 2008
Location: The North Pole
Posts: 13,210
Blog Entries: 13
Rep Power: 105
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Java gui application

OK, that's enough nonsense, tom2000. I'm fed up of you posting this nonsense everywhere. I'm reporting you to Jordan.
__________________

Quote:
Originally Posted by Jordan View Post
Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 10-03-2008, 02:13 PM
Jordan's Avatar   
Administrator
 
Join Date: Nov 2005
Location: Hendersonville, NC
Posts: 18,359
Blog Entries: 90
Rep Power: 20
Jordan is a glorious beacon of lightJordan is a glorious beacon of lightJordan is a glorious beacon of lightJordan is a glorious beacon of lightJordan is a glorious beacon of light
Send a message via ICQ to Jordan Send a message via AIM to Jordan Send a message via MSN to Jordan Send a message via Yahoo to Jordan
Default Re: Java gui application

Busted/Banned. Thanks Xav.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 10-03-2008, 02:15 PM
Xav's Avatar   
Xav Xav is offline
Code Slinger
 
Join Date: Mar 2008
Location: The North Pole
Posts: 13,210
Blog Entries: 13
Rep Power: 105
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Java gui application

You're welcome, O Reppy one.
__________________

Quote:
Originally Posted by Jordan View Post
Good members, like yourself, stick around and post for ages to come!
Mr. Xav | Blog | Forums
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 10-05-2008, 06:57 AM
Guru
 
Join Date: Oct 2007
Age: 25
Posts: 533
Rep Power: 12
G_Morgan is a jewel in the roughG_Morgan is a jewel in the roughG_Morgan is a jewel in the rough
Default Re: Java gui application

Netbeans has the best Swing GUI editor. I'd learn to write GUI's by hand before using a GUI editor though. They never, ever, give you exactly what you want and you'll need to be able to understand the code they produce if you want to modify it.

Swing isn't too difficult. Just a bunch of container and widget objects you can bundle together with the appropriate xListener object for handling events. Look up anonymous inner classes to make the event handling code easier to write.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 10-05-2008, 09:05 AM
Turk4n's Avatar   
Code Warrior
 
Join Date: May 2008
Location: 4chan.org/g/
Age: 19
Posts: 2,714
Blog Entries: 4
Rep Power: 29
Turk4n is a splendid one to beholdTurk4n is a splendid one to beholdTurk4n is a splendid one to beholdTurk4n is a splendid one to beholdTurk4n is a splendid one to beholdTurk4n is a splendid one to behold
Send a message via MSN to Turk4n Send a message via Skype™ to Turk4n
Default Re: Java gui application

I would recommend you to learn swing. It's really handy, and when you feel sure enough with the basics with swing move on to the JSet, I promise you will love it !(Well not because I love it )
__________________
Quote:
Originally Posted by Turk4n
The Last man who laughs, he did not get the joke.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
builder, free license, gui, java, xml



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Beginner in Java, need help with opening external application CrazeD Java Help 0 09-30-2008 06:49 PM
Tutorial: Starting Java Using Netbeans Jordan Java Tutorials 0 04-05-2008 02:45 PM
MS-SQL deadlock and hang the Java application reachpradeep Database & Database Programming 1 03-11-2007 04:20 AM
Java Help Files xXHalfSliceXx Java Help 3 11-28-2006 11:30 PM


All times are GMT -5. The time now is 09:26 PM.

Freelance Jobs

XML/XSL: Need code for Book with Chapers using XML
Create an XML file for a book of your creation, and a basic CSS file that will format it to display ...
Earn: $40.00


C++/C: Simple firework cue sequencer
What I require is a rework of a simple cue sequencer. I have a piece of hardware (an Arduino boar...
Earn: $50.00


HTML/XHTML: Menu Rework - ASCIIBin
I'm placing this in the HTML/XHTML section of the Freelance site but you are not limited to HTML. Wh...
Earn: $20.00



CodeCall Goal

Goal #1: 1,000 Blogs
Goal #2: 1,000 Wiki Pages
Goal #3: 300,000 Posts
Goal #4: 20,000 Threads
Done: 30%, 23%, 55%, 75%

Ads