How do you make a graphics program? [closed] - java

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I'm coding a project in java. I have a really basic question: how do you get a graphics program? And what libraries do you need?
I know that Processing (which isn't really java) does this for you, but I'm using eclipse.

For desktop apps you should look at Swing, Java2D, and Java3D.
The web is another matter. Your browser choices should include JavaScript libraries like d3.
Eclipse has nothing to do with it. It's just an IDE.

Related

turning java program into standalone application [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to convert my java program, TextFileAnalyzer, to a standalone application. I am not sure how to go about this I have done research and did not find anything helpful. If someone could get me in the right direction that would be awesome! Thanks.. Here is my program for reference:
You don't say what platform(s) you are targeting, or if you need to ship a complete executable. But, there are a few cross-platform Java wrappers. A common one is Launch4J.

How is it called a simple Java program with GUI? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I made a simple Java program using a JFrame. I want to know how is it called or what type it is. Maybe is it an API? Maybe a form?
If a ask something about my simple Java program
in a forum, I would like to do it properly! I used Eclipse.
Your wording is unclear, so I'm not exactly sure what you're asking. But it seems like that would just be called a Java desktop application.

Adding user interface using java in eclipse [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am extracting specific data about a place.That is if I select a location and choose a particular date it should display all events,exhibitions etc of that particular place. So for that I have to make an user interface. How can I make user interface in eclipse Juno using Java.
Download NetBeans and use that; much easier to develop a GUI for java using this IDE for beginners than using Eclipse. Also familiarize yourself with Swing and its classes (JPanel, etc.) - look through this to learn about swing:
http://docs.oracle.com/javase/tutorial/uiswing/components/
And this to familiarize yourself with NetBeans:
http://docs.oracle.com/javase/tutorial/uiswing/learn/netbeansbasics.html

use of JavaCV along with NetBeans [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
How can I use JavaCV effectively?
It would be highly helpful if any one can help me out with sample codes which explains how to use the ObjectFinder class in JavaCV.
I had no problems with running JavaCV with NetBeans recently.
Just be sure to add all essential jar's to project and also platform binnaries (32/64 bit, unix/win etc.). Those runtime libraries are in javacv-0.6-cppjars.zip.
http://code.google.com/p/javacv/downloads/list

Embed JVM into micro-controller [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am new in embedded world. May be I am wrong. But I want a relevant solution.
I just want to embed java environment into a MCU for ease to develop application. The MCU vendor have provide the C library for lcd, sensor, spi, buttons, UART, DIO etc etc. Can I embed java into this ?? I mean, I want to use java on the MCU, uppon those device drivers.
Can I use or make something like this??
I have seen the simple Real-Time-Java it's very tiny.
Thank you.
Take a look at NanoVM and Bajos.

Categories

Resources