Source Code

A PHP Script Including HTML
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
A Function to Format Debugging Messages
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
A Function to Build Query Strings
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
A Deliberate Error
PHP Is Open Source Programming Language You Can Download and use It, You required xampp server and wamp server . You download From xampp server from https://www.apachefriends.org/download.html. Click Here to download We provide this code related to title for you to solve your developing problem e…[ More ]
How can we check GPS of an Android device is enabled or not?
How can we check GPS of an Android device is enabled or not?In android, we can easily check whether GPS is enabled in device or not using LocationManager.Here is a simple program to Check.GPS Enabled or Not :- Add the below user permission line in AndroidManifest.xml to Access Locationpublic class E…[ More ]
Detect Current Location in Android Using GPS/NETWORK Provider
Detect Current Location in Android Using GPS/NETWORK ProviderUsing the Location Manager class, we can obtain periodic updates of the device's geographical locations as well as fire an intent when it enters the proximity of a certain location.1. Obtain a reference to the LocationManager class using t…[ More ]
Android Gallery ImageView
Android Gallery ImageView Now we are going to see a simple gallery example of how to use gallery look like a photo album as like in our phone. That is, when we click the item in gallery, the corresponding image will display below in full size using imageview.Create a attrs.xml file in res/values fol…[ More ]
How To Send HTTP Request GET/POST In Java
How To Send HTTP Request GET/POST In JavaIn this article, we will show you two examples to make HTTP GET/POST request via following APIs1.   Standard HttpURLConnection.2.   Apache HttpClient library.1. Java HttpURLConnection exampleThis example uses HttpURLConnection (http) and HttpsURLConnection (h…[ More ]
Graphical Ftp client
Graphical Ftp clientimport java.awt.BorderLayout;import java.awt.Color;import java.awt.Cursor;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.WindowAdapter;import java.awt.event.WindowEvent;import java.awt.event.WindowListener;import java.io.File;import j…[ More ]
FTP client
FTP clientimport java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.net.SocketException;import java.io.File;import org.eclipse.jface.dialogs.Dialog;import org.eclipse.jface.dialogs.DialogSettings;import org.eclipse.swt.SWT;import org.eclipse.swt.layout.GridData;impor…[ More ]
Get list of files from FTP Server
Get list of files from FTP ServerIn this example we shall show you how to get a list of files from an FTP Server. We are using the org.apache.commons.net.ftp.FTPClient Class that encapsulates all the functionality necessary to store and retrieve files from an FTP server. To get a list of files from …[ More ]
Executing a HTTP GET Request with HttpClient
Executing a HTTP GET Request with HttpClientRetrieve the contents of a stream via a HTTP GET.raw • copyʉۢ downloadpublic static InputStream getInputStreamFromUrl(String url) {  InputStream content = null;  try {  HttpClient httpclient = new DefaultHttpClient();  HttpResponse response = httpclien…[ More ]
ow can we check GPS of an Android device is enabled or not?
ow can we check GPS of an Android device is enabled or not?In android, we can easily check whether GPS is enabled in device or not using LocationManager.Here is a simple program to Check.GPS Enabled or Not :- Add the below user permission line in AndroidManifest.xml to Access Location[ More ]
Detect Current Location in Android Using GPS/NETWORK Provider
Detect Current Location in Android Using GPS/NETWORK ProviderUsing the Location Manager class, we can obtain periodic updates of the device's geographical locations as well as fire an intent when it enters the proximity of a certain location.1. Obtain a reference to the LocationManager class using t…[ More ]
Thread: JTree and FTP
Thread: JTree and FTP  JTree and FTP•   Hello . I am trying to set a ftp list into jtree but jtree appears empty . Here is my codeJava Code:   import java.io.IOException;import java.net.SocketException;import java.util.*; import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.JTree…[ More ]
Send image file using java HTTP POST connections
Send image file using java HTTP POST connectionsI'm trying to send an image to a website using Java HTTP POST requests.I'm using the base code used here Upload files with java:This is my modification:String urlToConnect = "http://localhost:9000/upload";File fileToUpload = new File("C:\\Users\\joao\\…[ More ]
UPLOAD FILES USING PHP AND CURL
CodeUPLOAD FILES USING PHP AND CURLRecently I was working on one REST API, in which I was sending API request using cURL and to send parameters I was using POST method.In one of the API request I wanted to send or upload a file through cURL, so I started working and got the solution for the …[ More ]
Cyclic Redundancy Check.C
CRC.C(Cyclic Redundancy Check) #include #include void main() {   int i,j,n,g,a,arr[20],gen[20],b[20],q[20],s;   printf("Transmitter side:");   printf("\nEnter no. of data bits:");   scanf("%d",&n);   printf("Enter data:");   for(i=0;i< n;i++) …[ More ]
Class_Less.C
Class_Less.C #include #include #include #include #include #include #include #include #define MAX 256 int count(char str[],char c) { int i,num = 0; // th…[ More ]
ClassFull.C
ClassFull.C #include #include #include #include #include #include #include #include #define MAX 256 int count(char str[],char c) { int i,num = 0; // the number of times c is in str for(i = 0; i < strlen(str); ++i) { if( str[i] == c ) …[ More ]