Just Call that Method and send Email in Android
public void emailSending( String strFile)
{
try {
strFile = "/sdcard/Semiotics/Config/ftpCongif.txt";
File file = new File(strFile);
if (!file.exists())
file.mkdirs();
strFile = strFile ;//+ "/report.html";
//create
[ read more ]
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 ]
In this tutorial, you will see that how to integrate Google Talk(Most popular chat client) with Java Code.
Follow these steps to integrate Google talk with Java
Java Code to integrate Google talk- Send Chat using java program
package chat_Server;
import org.jivesoftware.smack.ConnectionC
[ read more ]
Send money for FREE
The HTML5 Geolocation API is used to get the geographical position of a user.
Since this can compromise user privacy, the position is not available unless the user approves it.
Browser Support
Internet Explorer 9+, Firefox, Chrome, Safari and Opera support Geoloca
[ read more ]
Since its release in 1995, MySQL has became one of the most commonly used database in Internet world. A lot of small and medium businesses uses MySQL as their backend db. Its popularity for use with web applications is closely tied to the popularity of PHP, which is often combi
[ read more ]
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 ]
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 ]
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 ]
Mobile development is sexy — there's no denying that. But for someone like me, who generally focuses on back-end development or behind-the-firewall Flex applications, building a mobile application sounds intimidating. I can't pinpoint exactly why, but I also know I am not alone. However, with ne
[ read more ]
Let us see how to generate a simple ZIP file in JavaScript.
Sample ZIP in JavaScript
Let us create a helloworld ZIP file which contains two text files, hello1.txt and hello2.txt.
Step 1. Import jszip JavaScript
Include the jszip javascript file in the HTML document where you want to generate
[ read more ]