How to open wifi settings in android?

How to open wifi settings in android?

In today’s tutorial I will show you how to open the wifisettings in android programatically. This code comes handy when the user have not enabled the wifi and you want the user to enable it for your application to work. Here is the code for that. 1 2 3 4 5 6 7 8 9 10 1

[ read more ]

PhoneGap PayPal-Plugin

PhoneGap PayPal-Plugin

by Paul Beusterien, Mobile Developer Solutions, Carl Stehle, Appception Inc. and Tomaz Kregar, Bucka IT Adding the Plugin to your project Using this plugin requires Android Cordova (PhoneGap) and the PayPal Mobile Payments Library. The PayPal Mobile Payments Library can be downloaded here.

[ read more ]

JSON Input String using JavaScript.

JSON Input String using JavaScript.

If you are working with Restful API’s and you must need to send a JSON input response via web project, especially for Node projects. This post helps you to create a JSON input string using JavaScript. It's very useful, converting Data objects to JSON data format implemented with $.toJSON Jquer

[ read more ]

RESTful Web Services JSON API Transformer with Java

RESTful Web Services JSON API Transformer with Java

This post is the continuation of my previous last post, I had explained how to create a basic RESTful web services API using Java, now I want to explain JSON transformer to work with input Get and Post methods parameters. Just added a new class called transformer it converts object data into JSO

[ read more ]

How to create 3D applications with Java 3D

How to create 3D applications with Java 3D

In this article, we will be using the JAVA 3D for creating new and innovative graphic applications. For this, we will be using the concept of scene graph. The Java 3D API allows you to develop 3D graphics applications that have a high degree of visual realism. In this, we will be using the concept

[ read more ]

Google Map Geocoding Tutorial with Example

  Google Map API has been a great way to show geographical information on web. A lot of mashup tools like this, have been created around Google Maps to show a wide variety of data. In my previous article about Introduction to Google Maps API, I had described basic APIs to integrate Google Map

[ read more ]

Creating a simple Twitter Reader(Client) in 5 minutes!!

Twitter, The popular micro blogging and real time update site has changed the way we interact in internet world. Not only it has became a source of latest updates/news going in world, but also an addiction to lot of those who tweets regularly. Twitter has provided lots of API that can be used to Ge

[ read more ]

Create your own Search Engine(Interface) using Google Custom Search API

Google Custom Search API are wonderful tools to create some awesome search engine like tools. Also if you want to add a search option to your website and customize the look and feel of your search results, Google Custom Search API serve best to you. I have created a Real Time Search engine (I call

[ read more ]

Android Media Scanner Programmatically

  While working on an Android App, I had to integrate the Camera API. User can take a photo from App and process it. With Android the Photo that you click cannot be accessed until the media scanner runs and index it. It is possible to triggeer programatically the Media Scanner in Android. Ch

[ read more ]

Batch Insert In Java – JDBC

[caption id="" align="alignright" width="128"] JDBC[/caption] Let’s see how we can perform batch insert in Java using JDBC APIs. Although you might already knew this, I will try to explain the basic to a bit complex scenarios. In this note, we will see how we can use JDBC APIs like Statement and

[ read more ]