SlideShare a Scribd company logo
You can download this document from www.besthinditutorials.com
Android Networking
ď‚· Introduction to android networking in Hindi
ď‚· Networks status in android in Hindi
ď‚· HTTP request handling with android networking in Hindi
ď‚· Example
Introduction to android networking
Mobile phones computer Android phones networking
computer emails, web surfing
औ watching online videos services android networking
provide user web services provide
application networking implement
Android networking 3 implement
ď‚· IP (Internet Protocol)
ď‚· WiFi
ď‚· Bluetooth
Android java.net औ org.apache.http-client packages provide इ
packages application basic networking implement
detail networking implement android.net
package उ applications web
based
Network status
device network connected check
ConnectivityManager class इ
ConnectivityManager class object create इ current object
getSystemService() method call इ method
You can download this document from www.besthinditutorials.com
CONNECTIVITY_SERVICE context pass method object return
convert ConnectivityManager class object assign
इ इ object isConnected() method call
device network connected method true औ
false return
ConnectivityManager obj;
obj = (ConnectivityManager) this.getSystemService(context.CONNECTIVITY_SERVICE);
if(obj.isConnected())
{
Toast t1 = new Toast();
t1.makeText(context, "you are connected to internet",Toast.LENGTH_SHORT);
t1.show();
}
else
{
Toast t2 = new Toast();
t2.makeText(context, "you are not connected to internet",Toast.LENGTH_SHORT);
t2.show();
}
Handling HTTP requests
device network connected
operations perform Server HTTP requests औ HTTP
response basic networking operation URL open
request operations perform
HTTP operations perform android URL औ
httpURLConnection classes provide URL class object
इ object valid URL pass इ इ
object openConnection() method call इ result
httpURLConnection class reference variable assign इ
You can download this document from www.besthinditutorials.com
httpURLConnection class उ object connect() method call
इ httpURLConnection class object getInputStream() method call
औ इ InputStreamReader class object pass औ
InputStreamReader class object BufferReader class object pass
इ BufferReader class object readLine() method call
data read loop इ
BufferReader class object close() method call input stream close
औ httpURLConnection class object disconnect() method call
connection disconnect result return
इ उ
Activity class getHttpResponse() method
String result;
URL myurl = new URL("http://www.google.com");
httpURLConnection obj = (httpURLConnection) myurl.openConnection();
obj.connect();
InputStreamReader isr = new InputStreamReader(obj.getInputStream);
BufferReader br = new BufferReader(isr);
String input;
int count=0;
while(input = (br.readLine() != null)) // reading data
{
result = input;
count++;
}
br.close();
obj.disconnect();
return result;
You can download this document from www.besthinditutorials.com
Read more tutorials on Android in Hindi at www.besthinditutorials.com
Ad

More Related Content

What's hot (12)

Deploy with Confidence using Pact Go!
Deploy with Confidence using Pact Go!Deploy with Confidence using Pact Go!
Deploy with Confidence using Pact Go!
DiUS
 
2310 b 11
2310 b 112310 b 11
2310 b 11
Krazy Koder
 
Turmeric SOA - Security and Policy
Turmeric SOA - Security and PolicyTurmeric SOA - Security and Policy
Turmeric SOA - Security and Policy
kingargyle
 
07 objective-c session 7
07  objective-c session 707  objective-c session 7
07 objective-c session 7
Amr Elghadban (AmrAngry)
 
Assistive Technology_Research
Assistive Technology_ResearchAssistive Technology_Research
Assistive Technology_Research
Meng Kry
 
第一次用Parse就深入淺出
第一次用Parse就深入淺出第一次用Parse就深入淺出
第一次用Parse就深入淺出
Ymow Wu
 
Servlet session 7
Servlet   session 7Servlet   session 7
Servlet session 7
Anuj Singh Rajput
 
mediator
mediatormediator
mediator
guest55ff01
 
Academy PRO: ASP .NET Core MVC
Academy PRO: ASP .NET Core MVCAcademy PRO: ASP .NET Core MVC
Academy PRO: ASP .NET Core MVC
Binary Studio
 
2310 b 08
2310 b 082310 b 08
2310 b 08
Krazy Koder
 
Data management with ado
Data management with adoData management with ado
Data management with ado
Dinesh kumar
 
Sharepoint Saturday India Online best practice for developing share point sol...
Sharepoint Saturday India Online best practice for developing share point sol...Sharepoint Saturday India Online best practice for developing share point sol...
Sharepoint Saturday India Online best practice for developing share point sol...
Shakir Majeed Khan
 
Deploy with Confidence using Pact Go!
Deploy with Confidence using Pact Go!Deploy with Confidence using Pact Go!
Deploy with Confidence using Pact Go!
DiUS
 
Turmeric SOA - Security and Policy
Turmeric SOA - Security and PolicyTurmeric SOA - Security and Policy
Turmeric SOA - Security and Policy
kingargyle
 
Assistive Technology_Research
Assistive Technology_ResearchAssistive Technology_Research
Assistive Technology_Research
Meng Kry
 
第一次用Parse就深入淺出
第一次用Parse就深入淺出第一次用Parse就深入淺出
第一次用Parse就深入淺出
Ymow Wu
 
Academy PRO: ASP .NET Core MVC
Academy PRO: ASP .NET Core MVCAcademy PRO: ASP .NET Core MVC
Academy PRO: ASP .NET Core MVC
Binary Studio
 
Data management with ado
Data management with adoData management with ado
Data management with ado
Dinesh kumar
 
Sharepoint Saturday India Online best practice for developing share point sol...
Sharepoint Saturday India Online best practice for developing share point sol...Sharepoint Saturday India Online best practice for developing share point sol...
Sharepoint Saturday India Online best practice for developing share point sol...
Shakir Majeed Khan
 

Viewers also liked (7)

Learn java in hindi
Learn java in hindiLearn java in hindi
Learn java in hindi
Vipin sharma
 
Resume1
Resume1Resume1
Resume1
pasalasuneelkumar
 
android layouts
android layoutsandroid layouts
android layouts
Deepa Rani
 
Input and Output Control
Input and Output ControlInput and Output Control
Input and Output Control
Techronology Inc.
 
Android ui layout
Android ui layoutAndroid ui layout
Android ui layout
Krazy Koder
 
Android Ui
Android UiAndroid Ui
Android Ui
Jetti Chowdary
 
Layouts in android
Layouts in androidLayouts in android
Layouts in android
Durai S
 
Learn java in hindi
Learn java in hindiLearn java in hindi
Learn java in hindi
Vipin sharma
 
android layouts
android layoutsandroid layouts
android layouts
Deepa Rani
 
Input and Output Control
Input and Output ControlInput and Output Control
Input and Output Control
Techronology Inc.
 
Android ui layout
Android ui layoutAndroid ui layout
Android ui layout
Krazy Koder
 
Layouts in android
Layouts in androidLayouts in android
Layouts in android
Durai S
 
Ad

Similar to Android networking in Hindi (20)

CHAPTER - 3 - JAVA NETWORKING.pptx
CHAPTER - 3 - JAVA NETWORKING.pptxCHAPTER - 3 - JAVA NETWORKING.pptx
CHAPTER - 3 - JAVA NETWORKING.pptx
DhrumilSheth3
 
URL Class in Java.pdf
URL Class in Java.pdfURL Class in Java.pdf
URL Class in Java.pdf
SudhanshiBakre1
 
The Full Power of ASP.NET Web API
The Full Power of ASP.NET Web APIThe Full Power of ASP.NET Web API
The Full Power of ASP.NET Web API
Eyal Vardi
 
Url Connection
Url ConnectionUrl Connection
Url Connection
leminhvuong
 
Url Connection
Url ConnectionUrl Connection
Url Connection
phanleson
 
An Overview of Entity Framework
An Overview of Entity FrameworkAn Overview of Entity Framework
An Overview of Entity Framework
iFour Technolab Pvt. Ltd.
 
Advanced #2 networking
Advanced #2   networkingAdvanced #2   networking
Advanced #2 networking
Vitali Pekelis
 
Ajax
AjaxAjax
Ajax
Yoga Raja
 
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
dioduong345
 
AJAX
AJAXAJAX
AJAX
Gouthaman V
 
AJAX
AJAXAJAX
AJAX
Gouthaman V
 
Client-Server
Client-ServerClient-Server
Client-Server
Ahsanul Karim
 
URL Class in JAVA
URL Class in JAVAURL Class in JAVA
URL Class in JAVA
Ramasubbu .P
 
Working with Servlets
Working with ServletsWorking with Servlets
Working with Servlets
People Strategists
 
13 networking, mobile services, and authentication
13   networking, mobile services, and authentication13   networking, mobile services, and authentication
13 networking, mobile services, and authentication
WindowsPhoneRocks
 
ASP.NET Web API
ASP.NET Web APIASP.NET Web API
ASP.NET Web API
habib_786
 
ASP .net MVC
ASP .net MVCASP .net MVC
ASP .net MVC
Divya Sharma
 
Android Networking
Android NetworkingAndroid Networking
Android Networking
Matteo Bonifazi
 
Nestjs MasterClass Slides
Nestjs MasterClass SlidesNestjs MasterClass Slides
Nestjs MasterClass Slides
Nir Kaufman
 
WP7 HUB_Consuming Data Services
WP7 HUB_Consuming Data ServicesWP7 HUB_Consuming Data Services
WP7 HUB_Consuming Data Services
MICTT Palma
 
CHAPTER - 3 - JAVA NETWORKING.pptx
CHAPTER - 3 - JAVA NETWORKING.pptxCHAPTER - 3 - JAVA NETWORKING.pptx
CHAPTER - 3 - JAVA NETWORKING.pptx
DhrumilSheth3
 
URL Class in Java.pdf
URL Class in Java.pdfURL Class in Java.pdf
URL Class in Java.pdf
SudhanshiBakre1
 
The Full Power of ASP.NET Web API
The Full Power of ASP.NET Web APIThe Full Power of ASP.NET Web API
The Full Power of ASP.NET Web API
Eyal Vardi
 
Url Connection
Url ConnectionUrl Connection
Url Connection
leminhvuong
 
Url Connection
Url ConnectionUrl Connection
Url Connection
phanleson
 
Advanced #2 networking
Advanced #2   networkingAdvanced #2   networking
Advanced #2 networking
Vitali Pekelis
 
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
8-9-10. ASP_updated8-9-10. ASP_updated8-9-10. ASP_updated
dioduong345
 
URL Class in JAVA
URL Class in JAVAURL Class in JAVA
URL Class in JAVA
Ramasubbu .P
 
13 networking, mobile services, and authentication
13   networking, mobile services, and authentication13   networking, mobile services, and authentication
13 networking, mobile services, and authentication
WindowsPhoneRocks
 
ASP.NET Web API
ASP.NET Web APIASP.NET Web API
ASP.NET Web API
habib_786
 
ASP .net MVC
ASP .net MVCASP .net MVC
ASP .net MVC
Divya Sharma
 
Android Networking
Android NetworkingAndroid Networking
Android Networking
Matteo Bonifazi
 
Nestjs MasterClass Slides
Nestjs MasterClass SlidesNestjs MasterClass Slides
Nestjs MasterClass Slides
Nir Kaufman
 
WP7 HUB_Consuming Data Services
WP7 HUB_Consuming Data ServicesWP7 HUB_Consuming Data Services
WP7 HUB_Consuming Data Services
MICTT Palma
 
Ad

Recently uploaded (20)

"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Journal of Soft Computing in Civil Engineering
 
Value Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous SecurityValue Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous Security
Marc Hornbeek
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Avnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights FlyerAvnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights Flyer
WillDavies22
 
Data Structures_Searching and Sorting.pptx
Data Structures_Searching and Sorting.pptxData Structures_Searching and Sorting.pptx
Data Structures_Searching and Sorting.pptx
RushaliDeshmukh2
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 
The Gaussian Process Modeling Module in UQLab
The Gaussian Process Modeling Module in UQLabThe Gaussian Process Modeling Module in UQLab
The Gaussian Process Modeling Module in UQLab
Journal of Soft Computing in Civil Engineering
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Artificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptxArtificial Intelligence (AI) basics.pptx
Artificial Intelligence (AI) basics.pptx
aditichinar
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
Raish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdfRaish Khanji GTU 8th sem Internship Report.pdf
Raish Khanji GTU 8th sem Internship Report.pdf
RaishKhanji
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
Mathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdfMathematical foundation machine learning.pdf
Mathematical foundation machine learning.pdf
TalhaShahid49
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITYADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ADVXAI IN MALWARE ANALYSIS FRAMEWORK: BALANCING EXPLAINABILITY WITH SECURITY
ijscai
 
ELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdfELectronics Boards & Product Testing_Shiju.pdf
ELectronics Boards & Product Testing_Shiju.pdf
Shiju Jacob
 
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Structural Response of Reinforced Self-Compacting Concrete Deep Beam Using Fi...
Journal of Soft Computing in Civil Engineering
 
Value Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous SecurityValue Stream Mapping Worskshops for Intelligent Continuous Security
Value Stream Mapping Worskshops for Intelligent Continuous Security
Marc Hornbeek
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
new ppt artificial intelligence historyyy
new ppt artificial intelligence historyyynew ppt artificial intelligence historyyy
new ppt artificial intelligence historyyy
PianoPianist
 
Avnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights FlyerAvnet Silica's PCIM 2025 Highlights Flyer
Avnet Silica's PCIM 2025 Highlights Flyer
WillDavies22
 
Data Structures_Searching and Sorting.pptx
Data Structures_Searching and Sorting.pptxData Structures_Searching and Sorting.pptx
Data Structures_Searching and Sorting.pptx
RushaliDeshmukh2
 
Smart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineeringSmart Storage Solutions.pptx for production engineering
Smart Storage Solutions.pptx for production engineering
rushikeshnavghare94
 

Android networking in Hindi

  • 1. You can download this document from www.besthinditutorials.com Android Networking ď‚· Introduction to android networking in Hindi ď‚· Networks status in android in Hindi ď‚· HTTP request handling with android networking in Hindi ď‚· Example Introduction to android networking Mobile phones computer Android phones networking computer emails, web surfing औ watching online videos services android networking provide user web services provide application networking implement Android networking 3 implement ď‚· IP (Internet Protocol) ď‚· WiFi ď‚· Bluetooth Android java.net औ org.apache.http-client packages provide इ packages application basic networking implement detail networking implement android.net package उ applications web based Network status device network connected check ConnectivityManager class इ ConnectivityManager class object create इ current object getSystemService() method call इ method
  • 2. You can download this document from www.besthinditutorials.com CONNECTIVITY_SERVICE context pass method object return convert ConnectivityManager class object assign इ इ object isConnected() method call device network connected method true औ false return ConnectivityManager obj; obj = (ConnectivityManager) this.getSystemService(context.CONNECTIVITY_SERVICE); if(obj.isConnected()) { Toast t1 = new Toast(); t1.makeText(context, "you are connected to internet",Toast.LENGTH_SHORT); t1.show(); } else { Toast t2 = new Toast(); t2.makeText(context, "you are not connected to internet",Toast.LENGTH_SHORT); t2.show(); } Handling HTTP requests device network connected operations perform Server HTTP requests औ HTTP response basic networking operation URL open request operations perform HTTP operations perform android URL औ httpURLConnection classes provide URL class object इ object valid URL pass इ इ object openConnection() method call इ result httpURLConnection class reference variable assign इ
  • 3. You can download this document from www.besthinditutorials.com httpURLConnection class उ object connect() method call इ httpURLConnection class object getInputStream() method call औ इ InputStreamReader class object pass औ InputStreamReader class object BufferReader class object pass इ BufferReader class object readLine() method call data read loop इ BufferReader class object close() method call input stream close औ httpURLConnection class object disconnect() method call connection disconnect result return इ उ Activity class getHttpResponse() method String result; URL myurl = new URL("http://www.google.com"); httpURLConnection obj = (httpURLConnection) myurl.openConnection(); obj.connect(); InputStreamReader isr = new InputStreamReader(obj.getInputStream); BufferReader br = new BufferReader(isr); String input; int count=0; while(input = (br.readLine() != null)) // reading data { result = input; count++; } br.close(); obj.disconnect(); return result;
  • 4. You can download this document from www.besthinditutorials.com Read more tutorials on Android in Hindi at www.besthinditutorials.com