I'm learning java and came across this website http://docs.oracle.com/javame/dev-tools/jme-sdk-3.0-win/html-helpset/z400050692330.html, i wanted to download sample demos and source code, but not finding anywhere.
I think many of you have tried these, so please post a link to download those sample demos and source code.
You're on the documentation page. So, all you've to do is find the jme sdk. See this link The documentation page details on Getting started and Running sample code. Read the prerequisites before installing. Also, consider #Taymon's advice.
This is for the Micro Edition of Java. If you're just learning Java, it is almost certainly not what you want; you are probably using Standard Edition.
Related
I have found this https://blueimp.github.io/jQuery-File-Upload/angularjs.html very interesting plugin to upload files with AngularJS which it has also a part with Google App engine. But i have not found JAVA implementation. Anyone knows if there is already a JAVA version ?
Here is the link which is working with java: https://github.com/blueimp/jQuery-File-Upload/wiki/Google-App-Engine-Java
All codes are given step by step. Hope it will help you.
For more, you can go through this tutorial also: https://stackoverflow.com/a/2424824/2293534
I am trying to develop/create a plugin, but I can't seem to find a [good] series of tutorials covering the broad range of topics that are involved in doing so. I have already found the Developer FAQ Page, the NetBeans Platform Learning Trail, and the NetBeans Platform 7.3 Plugin Quick Start, but none of those, or similar sites on netbeans.org have a[n extensive] tutorial on plugin development. So my question basically is: does anyone know a good, comprehensive tutorial for developing netbeans plugins. As always, any information, resources, or advice is much appreciated.
Thanks!
All the documentation you could possible want:
http://netbeans.org/kb/index.html
Tutorials:
http://netbeans.org/kb/docs/javaee/ecommerce/intro.html
Plug-Ins:
http://platform.netbeans.org/tutorials/nbm-google.html
Dunno if you still looking for an answer, that's the link you're looking for I presume. the video in this link is quite descriptive of how to look around in the doc and is a very good quick start guide you have also applications tutorial that are real-world examples built step by step, there is even a book: Netbeans Platform for beginners if you want to go deeper, a list of videos are available here ... basically just look carefully in the first link it has many resources they're just scattered.
I am new to MarkLogic Server and hence to have some hands on experience on MarkLogic I wished to get some help from the projects already developed using Java and MarkLogic.
On doing google search, I was unable to find suitable examples and hence I am looking forward to all of you.
Please help me.
Have a look at the developer site for resources. This page includes links to a number of java-based projects:
http://developer.marklogic.com/code
You can connect to MarkLogic over HTTP or using XCC, a library that is similar to JDBC. Here's the guide for XCC:
http://developer.marklogic.com/pubs/5.0/books/xcc.pdf
and the javadocs are here:
http://developer.marklogic.com/pubs/5.0/javadoc/index.html
Finally, there's a great archive of discussion from the developer list on MarkMail:
http://marklogic.markmail.org
Kelly
Kelly's answer is good. Drilling into the dev site a little, try some of the interactive tutorials at http://developer.marklogic.com/try/ninja/index
If you are interested in developing a REST-ful interface, try Corona at http://developer.marklogic.com/try/corona/index
For more sample applications, http://developer.marklogic.com/code has a good list: http://developer.marklogic.com/code/boing-boing might be a good one to start with, and its code is on github.
I am a complete Android and C in general noob,
I have done a lot of web programming (which I am imagining is largely irrelevant here), some javascript (not jQuery just raw JS), I have also developed a .net app and done a course in java programming at uni last semester,
I know that Android uses Java in some places and C in others, I have looked at the SDK documentation here: http://developer.android.com/guide/topics/appwidgets/index.html
My aim is to build a simple dashboard widget that pulls data on a minute-by-minute basis from a JSON/JSONP API, I have thus far struggled to find any decent tutorials for real Android noobs such as myself, especially in the app widget category, If anyone knows of any good resources (online or books are fine) consisting of basic good practises, start-up guides and quick tutorials to get me up to speed would be great as I have absolutely no idea where to start (especially in the C end of things), I have found the SDK documentation does have some good stuff but it isn't exactly what I am after (built on very old builds of Android and thus most of the cool new features aren't integrated or taken into account).
Any recommendations would be very much appreciated!
On a side note, If all goes well with Android I would also be looking to move onto iOS so Objective-C start-up and tutorials would be great (Visual Quick Pro guide style would be perfect!)
I personally started reading and understanding the Android Application Fundamentals. Then I downloaded the Android ADT (Development Toolkit), configured it on Eclipse as well as the SDK (including samples).
Once that's set up, I started with the ApiDemos. You find its source code directly in the downloaded SDK <sdk-install-location>/samples/android-9/ApiDemos. Try to debug the code in the IDE, modify it and see how it reacts.
Finally, have fun :)
Well, I started with the Android developer documentation:
http://developer.android.com/guide/index.html
If that isn't as organized as you'd like for a complete beginner, you might want to try the FAQ since they have a lot of good tutorial links there, which happen to be very thorough:
http://developer.android.com/resources/faq/index.html
Once you get the basics, which the tutorials will do for you, the first link to the developer guide will be where you'll spend most of your time. There are even links in the guide for getting started with your IDE of choice, or getting started using no IDE at all.
To get a more specific answer, you'll have to ask a more specific question.
There are a handful of open-flash-charts tutorials on the web, mostly php from what I can see. I know there is a Java helper class, but I haven't found documentation or examples.
The helper library is also includes in the ofcharts grails plugin.
Java/Groovy or Grails suggestions welcome.
thanks!
One of the single best sources I have found on it is here
From the site: "This site is now mainly used to post examples, help and patches for users requesting help in the OFC2 forum which I occassionally haunt."
Has proven invaluable in my developing Java/Grails charts with it. Bear in mind that you need to do little else to make the charts work than to generate JSON. To that end Grails is ideal - however what you will spend a lot of time working on is structuring that JSON data.
The linked site provides the most detailed JSON API documentation that exists for the different chart types OFC supports.
There is also a Java API reference open source project hosted on Google Code:
http://code.google.com/p/jofc2/
This is the code embedded in the Grails plugin I've been using so the documentation has helped a ton!