Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am looking for a library / framework that lets me develop Java UIs (e.g., for Windows) using the Android views, layouts and animations. Things like a message loop and AsyncTask would be a great bonus. I don't want to run an emulator but simply get a jar-file.
Unfortunately, my google-foo is insufficient for this task.
Kind regards,
Volker
The project IcedRobot has the goal to develop such a framework. But unfortunately it seems to be stuck - announced in 2011 and no updates for 2 years now.
I don't think there is and will have such thing. Be able running android view system requires not only the java file but lot other native library such as SurfaceFlinger.
This is not possible as Android java is not standard java and doesn't run on JavaVM but rather on DalvikVM.
Take a look at this question:
DalvikVM Vs JavaVM in Android?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
The Applet class has been deprecated, and but online tutorials for creating java applets extends the Applet class. Is there a different way to create an applet without using the deprecated class?
A distinct non-answer: you do not do that.
Not only the Applet class has been deprecated. That whole "technology/idea" is dead. No current browser does support running Java code any more. In other words: Java in the browser is dead. Learning about it is a waste of time and energy.
If you want to build a Java GUI, learn about Swing or JavaFX. If you want to create a web application that runs in a browser, there are many other ways to do that. Java applets is not a reasonable way in 2018.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Due to some constraints in the project I'm working on, I need to develop a desktop application using Java. Now, I face the decision of which framework should I use. Is there any outstanding one? I've searched in different questions already done in this forum, but most of them are from 2014 or earlier.
You can try JavaFx. You can also find a lot of tutorials on JavaFx in google.
https://docs.oracle.com/javafx/2/overview/jfxpub-overview.htm
As #StephaneM told this is off topic. Anyways you should use javaFX. Which is a library that has graphics and media controlling capabilities. Your next question would be what kind of IDE you should use. As I have seen both Eclipse and Intellij Idea have the drag and drop UI building interfaces. So you can only focus on the functionality building. Welcome to Stackoverflow and please read what #StephaneM mentioned.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am looking for rendering musical scores in Android.
So far I have just been able to find 2 GPL libraries namely abcj and Jmusic both of which support java.While specifying it in any android's class path application throws up exception this might be possible as Android doesn't support javaSE environment java's byte code differs from Android's dalvik code.. can I somehow get these libraries to work for my android app or are there any 3rd party API's available for Android development ..?
Here is a thesis on "Dynamic Generation of Musical Notation from MusicXML Input on an Android Tablet"
https://etd.ohiolink.edu/rws_etd/document/get/osu1338377470/inline
9/20/20: That link is broken, this one appears to work: https://etd.ohiolink.edu/!etd.send_file?accession=osu1338377470&disposition=inline
This open source library has experimental implementations for Android using Xamarin:
http://musicengravingcontrols.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
i was just wondering if anyone knew of a portable java IDE/Compiler? Something like an iPod but not so advanced, that let's you work with and compile java?
Just thought it would be a cool idea :P
This serves the purpose. We can compile the programs without requiring Java compiler on our machine.
There is an IDE for Android which supports this, see AIDE
Search for drJava. Is a pretty complex editor and includes a(n Eclipse) compiler.
Unfortunatelly, the project seems to be dead.
If you have an iOS device (iPhone, iPod touch or iPad) at hand, you can jailbreak it and install Java from Cydia. This gives you the compiler and the VM. However, it's old and limited to command line functionality.
You can use http://ideone.com/. This is a website for compiling and running java applications Here you can create an account and save all your example programs, which you can later refer from different location or even share it with others.
You can also practice other computer languages in it. It supports more than 40 programming languages.
Have you given any thought about using codenameone platform? http://www.codenameone.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm wondering if I can access to a Posix Message Queue in Java as I have an application that can't be modified and uses a message queue to talk to other processes.
Is there any api or package that do that?
I know that I can use JNI but I need to do this ASAP so no time to develop that.
Regards.
A bit of Googling found Posix for Java.
Take a look at JNA at GitHub (latest JavaDoc). Quoting the project's description:
JNA provides Java programs easy access
to native shared libraries (DLLs on
Windows) without writing anything but
Java code—no JNI or native code is
required. This functionality is
comparable to Windows' Platform/Invoke
and Python's ctypes. Access is dynamic
at runtime without code generation.
Several projects are using it, including IntelliJ IDEA, Cassandra, and Netbeans.