How to create a Windows 8 desktop application using JAVA as a source language ?
Please tell me what tools I can use for the same ?
I have done a lot of research but I cannot find a way to get out of the problem. Please help me out.
Thanks in advance.
And please instead of down vote this, please try to help me if you can.
Take care!
You cannot use Java for developing Windows Store apps (aka Metro UI apps).
See here: https://dev.windows.com/en-us/getstarted
"You can write a Windows Runtime app in a variety of languages, such as C# or C++ with XAML, C++ with DirectX, and JavaScript with HTML/CSS."
Related
I am totally new to VS Code and as I want to start learning Java for Android development. I saw that the Java language was supported by the VS Code IDE so that was good news. Ok but how would one exactly approach developing anything in Java via VS Code? I mean what is the build process for compiling anything I write in Java? Would I need to write some special tasks.json or?
What I would like to start with is a simple "console" like Java application build with VS Code. I would appreciate any information regarding this topic, thank you.
You will need to install the java language support by pressing F1 and entering ext install java.
You will need to install maeven or gradle (or ant?) for your build process.
I was wondering if you are allowed to put java programs on the Google Apps Marketplace. I know you can put java web apps but can you put java programs that run on the desktop? That would be great.
Thanks in advance.
I think Java, Python or Go are allowed. See here https://developers.google.com/appengine. But only web app.
Please enlighten me on this,
is it possible to execute code written in java or play with classes written in java from xcode project for iphone/ipad.
while googling I got thi
http://hints.macworld.com/article.php?story=20040321163154226 but I guess this solution is not working and is deprecated on mac platforms as well.
Just to highlight I see
Regards
Ankit
No this is not possible, since there is no Java virtual machine available for iOS.
Is there any analog to Microsoft Silverlight in Java World? The requirement is to use native language and share some already written libraries while hosting in a web browser on client side. Silverlight is a great technology, but it doesn't work on Linux. Please don't remind me of Moonlight. Please don't suggest ActionScript as it's not Java.
Thanks.
JavaFX springs immediately to mind, which sort of hangs around in the Flash/Silverlight space. It's pretty immature, though, and not heavily used.
For a more general RCP platform, try Eclipse RCP.
You could look at GWT or Echo2
You may find this review http://vinaytechs.blogspot.com/2009/09/comparison-matrix-of-ajax-frameworks-zk.html interesting as it covers many other options and lists the different features of each.
I am trying to write a Java application showcasing Bluetooth features. On general search, I found JSR82 has been defined for the same.
I am not able to figure out exactly how to use it. I am using standard java 1.6 and I believe for JSR82 implementation I would need J2ME running.
I need help to understand how to use the 2 java editions together. I have never worked with the Micro Edition before. Would appreciate any inputs.
Thanks & Regards,
Keya
You can simple try using a JSR82 implementation on your mobile device - it should work.
This site has some good information about it.
Here are two JSR82 implementations I know of:
Bluecove
Avetana
Go to http://java.sun.com.
Install the jdk and the latest full version of Netbeans for your linux computer.
Use Netbeans to create a HelloWorld mobile application
Run it in the Wireless ToolKit emulator packaged into Netbeans.
That should work right out of the box.
You then need to read the JSR-118 specification to understand how a MIDlet works.
Then read the emulator documentation to figure out how to provide bluetooth data to your MIDlet.