Java: adding a user interface to a program

If I have a Java program and I need to change it to interface and include icons, are there any easy ones I can do that, and is there a good application that can help me do this? or do I need to code it in myself?

0


source to share


5 answers


Nop, / me thinks ur needs 1337 insane Java program, "skill!"

Translation for the rest of the world: Sorry, you will need to program in Java.



Added: Hey, what's with the downvotes? He started !: P Also - no matter if he wants to add or change (the original text was not clear) the user interface of a Java program, he will have to program in Java to combine his interface with the code. There is no miracle tool that can let you draw a user interface and it suddenly does what you do.

+5


source


Netbeans has Swing GUI Builder . Quote from their site. Let's hope this isn't considered hidden advertising :)



Design Swing GUIs by dragging and positioning GUI components from the palette to the canvas. The GUI creator automatically takes care of the correct spacing and alignment. Click in JLabels, JButtons, ButtonGroups, JTrees, JTextFields, ComboBoxes and edit their properties directly in place. You can use the GUI builder to prototype the GUI right in front of the clients.

+2


source


If you want to add user interface to your Java program, tools like Swing GUI Builder inside IntelliJ Idea will help you . However, you still have to write the appropriate code to connect to the UI.

+1


source


Is it just a website? Well, depending on whether or not it uses CSS, you can just change the .css file. This will allow you to change the way the site works, not work.

See here for an example of how this technology works. However, it depends on how css-dependent the site is and, perhaps, you may face some difficulties.

0


source


You want to use the Java framework to help you with the user interface. For example, you can use JSF (Javaserver face), which allows you to drag and drop components for the user interface onto the site. Otherwise, you can use web programs like Dreamweaver to develop the user interface before coding the internal logic yourself in java.

0


source







All Articles