Android与服务器通信的方法之一(TCP)效率高安全性完善

2024-06-07 00:48

本文主要是介绍Android与服务器通信的方法之一(TCP)效率高安全性完善,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


Android与服务器通信的方法之一(TCP)效率高安全性完善

客户端代码: 
Java代码  

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package com.yarin.android.Examples_08_04;  
   
import java.io.BufferedReader;  
import java.io.BufferedWriter;  
import java.io.InputStreamReader;  
import java.io.OutputStreamWriter;  
import java.io.PrintWriter;  
import java.net.InetAddress;  
import java.net.Socket;  
import android.app.Activity;  
import android.os.Bundle;  
import android.util.Log;  
import android.view.View;  
import android.view.View.OnClickListener;  
import android.widget.Button;  
import android.widget.EditText;  
import android.widget.TextView;  
   
public class Activity01  extends Activity  
{  
     private final String        DEBUG_TAG   =  "Activity01" ;  
        
     private TextView    mTextView= null ;  
     private EditText    mEditText= null ;  
     private Button      mButton= null ;  
       
     @Override 
     public void onCreate(Bundle savedInstanceState)  
     {  
         super .onCreate(savedInstanceState);  
         setContentView(R.layout.main);  
            
         mButton = (Button)findViewById(R.id.Button01);  
         mTextView=(TextView)findViewById(R.id.TextView01);  
         mEditText=(EditText)findViewById(R.id.EditText01);  
            
         //登陆  
         mButton.setOnClickListener( new OnClickListener()  
         {  
             public void onClick(View v)  
             {  
                 Socket socket =  null ;  
                 String message = mEditText.getText().toString() +  "\r\n" ;   
                 try   
                 {     
                     //创建Socket  
                     socket =  new Socket( "116.29.27.138" , 5554 );  //查看本机IP,每次开机都不同  
                     //socket=new Socket("192.168.1.110",50000);  
                     //向服务器发送消息  
                     PrintWriter out =  new PrintWriter(  new BufferedWriter(  new OutputStreamWriter(socket.getOutputStream())), true );        
                     out.println(message);   
                        
                     //接收来自服务器的消息  
                     BufferedReader br =  new BufferedReader( new InputStreamReader(socket.getInputStream()));   
                     String msg = br.readLine();   
                        
                     if ( msg !=  null )  
                     {  
                         mTextView.setText(msg);  
                     }  
                     else 
                     {  
                         mTextView.setText( "数据错误!" );  
                     }  
                     //关闭流  
                     out.close();  
                     br.close();  
                     //关闭Socket  
                     socket.close();   
                 }  
                 catch (Exception e)   
                 {  
                     // TODO: handle exception  
                     Log.e(DEBUG_TAG, e.toString());  
                 }  
             }  
         });  
     }  
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.InetAddress;
import java.net.Socket;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class Activity01  extends Activity
{
private final String DEBUG_TAG =  "Activity01" ;
private TextView mTextView= null ;
private EditText mEditText= null ;
private Button mButton= null ;
  
@Override
public void onCreate(Bundle savedInstanceState)
{
super .onCreate(savedInstanceState);
setContentView(R.layout.main);
mButton = (Button)findViewById(R.id.Button01);
mTextView=(TextView)findViewById(R.id.TextView01);
mEditText=(EditText)findViewById(R.id.EditText01);
//登陆
mButton.setOnClickListener( new OnClickListener()
{
public void onClick(View v)
{
Socket socket =  null ;
String message = mEditText.getText().toString() +  "\r\n" ;
try
{
//创建Socket
socket =  new Socket( "116.29.27.138" , 5554 );  //查看本机IP,每次开机都不同
//socket=new Socket("192.168.1.110",50000);
//向服务器发送消息
PrintWriter out =  new PrintWriter(  new BufferedWriter(  new OutputStreamWriter(socket.getOutputStream())), true );     
out.println(message);
//接收来自服务器的消息
BufferedReader br =  new BufferedReader( new InputStreamReader(socket.getInputStream()));
String msg = br.readLine();
if ( msg !=  null )
{
mTextView.setText(msg);
}
else
{
mTextView.setText( "数据错误!" );
}
//关闭流
out.close();
br.close();
//关闭Socket
socket.close();
}
catch (Exception e)
{
// TODO: handle exception
Log.e(DEBUG_TAG, e.toString());
}
}
});
}
}
服务器端代码:
Java代码 
package com.yarin.android.Examples_08_04;  
   
import java.io.BufferedReader;  
import java.io.BufferedWriter;  
import java.io.InputStreamReader;  
import java.io.OutputStreamWriter;  
import java.io.PrintWriter;  
import java.net.ServerSocket;  
import java.net.Socket;  
   
public class Server  implements Runnable  
{  
     public void run()  
     {  
         try 
         {  
             //创建ServerSocket  
             ServerSocket serverSocket =  new ServerSocket( 5554 );  
             while ( true )  
             {  
                 //接受客户端请求  
                 Socket client = serverSocket.accept();  
                 System.out.println( "accept" );  
                 try 
                 {  
                     //接收客户端消息  
                     BufferedReader in =  new BufferedReader( new InputStreamReader(client.getInputStream()));  
                     String str = in.readLine();  
                     System.out.println( "read:" + str);    
                     //向服务器发送消息  
                     PrintWriter out =  new PrintWriter(  new BufferedWriter(  new OutputStreamWriter(client.getOutputStream())), true );        
                     out.println( "server message" );   
                     //关闭流  
                     out.close();  
                     in.close();  
                 }  
                 catch (Exception e)  
                 {  
                     System.out.println(e.getMessage());  
                     e.printStackTrace();  
                 }  
                 finally 
                 {  
                     //关闭  
                     client.close();  
                     System.out.println( "close" );  
                 }  
             }  
         }  
         catch (Exception e)  
         {  
             System.out.println(e.getMessage());  
         }  
     }  
     //main函数,开启服务器  
     public static void main(String a[])  
     {  
         Thread desktopServerThread =  new Thread( new Server());  
         desktopServerThread.start();  
     }  
}

这篇关于Android与服务器通信的方法之一(TCP)效率高安全性完善的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!


原文地址:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.chinasem.cn/article/1037708

相关文章

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

macOS无效Launchpad图标轻松删除的4 种实用方法

《macOS无效Launchpad图标轻松删除的4种实用方法》mac中不在appstore上下载的应用经常在删除后它的图标还残留在launchpad中,并且长按图标也不会出现删除符号,下面解决这个问... 在 MACOS 上,Launchpad(也就是「启动台」)是一个便捷的 App 启动工具。但有时候,应

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

mysql出现ERROR 2003 (HY000): Can‘t connect to MySQL server on ‘localhost‘ (10061)的解决方法

《mysql出现ERROR2003(HY000):Can‘tconnecttoMySQLserveron‘localhost‘(10061)的解决方法》本文主要介绍了mysql出现... 目录前言:第一步:第二步:第三步:总结:前言:当你想通过命令窗口想打开mysql时候发现提http://www.cpp

Mysql删除几亿条数据表中的部分数据的方法实现

《Mysql删除几亿条数据表中的部分数据的方法实现》在MySQL中删除一个大表中的数据时,需要特别注意操作的性能和对系统的影响,本文主要介绍了Mysql删除几亿条数据表中的部分数据的方法实现,具有一定... 目录1、需求2、方案1. 使用 DELETE 语句分批删除2. 使用 INPLACE ALTER T

MySQL INSERT语句实现当记录不存在时插入的几种方法

《MySQLINSERT语句实现当记录不存在时插入的几种方法》MySQL的INSERT语句是用于向数据库表中插入新记录的关键命令,下面:本文主要介绍MySQLINSERT语句实现当记录不存在时... 目录使用 INSERT IGNORE使用 ON DUPLICATE KEY UPDATE使用 REPLACE

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda