我正在尝试在java和android中实现一个非常简单的客户端/服务器应用程序。当我执行它时,服务器似乎运行良好,并且我的手机上的Android客户端打开。但是,当我尝试通过WiFi连接向服务器发送消息时,它不起作用。
以下是我的服务器代码:
package com.SentientShadow;
import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;
public class Server {
public static void main(String[] args) {
Thread thread = new Thread(){
public void run() {
System.out.println("Server has started and is listening...");
try{
ServerSocket socket = new ServerSocket(6879);
while (true){
Socket connection = socket.accept();
DataInputStream input = new DataInputStream(connection.getInputStream());
System.out.println("Received from client: " + input.readUTF());
input.close();
connection.close();
}
}catch(IOException e){
System.out.println("problem accepting connection");
}
}
};
thread.start();
}
}
以下是我的客户活动代码:
package com.SentientShadow;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;
import android.support.v7.app.ActionBarActivity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.os.Bundle;
public class Client extends ActionBarActivity implements OnClickListener {
private EditText etMessage;
private Button bSend;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_client);
etMessage = (EditText)findViewById(R.id.etMessage);
bSend = (Button)findViewById(R.id.bSend);
bSend.setOnClickListener(this);
}
public void onClick(View view) {
Thread thread = new Thread(){
public void run() {
try {
Socket connection = new Socket("127.0.0.1", 6789);
DataOutputStream output = new DataOutputStream(connection.getOutputStream());
output.writeUTF(etMessage.getText().toString());
output.flush();
output.close();
connection.close();
} catch (UnknownHostException e) {
System.out.println("problem connecting to specified address");
} catch (IOException e) {
System.out.println("problem connecting to port");
}
}
};
thread.start();
Toast.makeText(this, "Message has been sent!", Toast.LENGTH_SHORT).show();
}
}
以下是客户端活动的xml布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.SentientShadow.Client" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Enter message:" />
<EditText
android:id="@+id/etMessage"
android:layout_width="wrap_content"
android:layout_height="100dp"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="14dp"
android:ems="10" />
<Button
android:id="@+id/bSend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText1"
android:layout_below="@+id/editText1"
android:text="Send" />
</RelativeLayout>
这是我的xml清单文件的代码:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.SentientShadow"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Client"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
我用System.out.println消息替换了IOException和UnknownHostException printstacktrace,以便我可以确定问题是否来自其中任何一个错误。但是,没有任何内容打印到控制台。
我还使用端口扫描程序扫描了几个端口,似乎我的学校网络已经阻止了所有端口,因为它们已经关闭。但是,我之前已经制作了另一个客户端/服务器应用程序,其中客户端和服务器都纯粹在java中编码为桌面应用程序。在那种情况下,我使用localhost(127.0.0.1)作为IP地址并尝试使用多个端口的应用程序,它工作。我也用我的连接的公共IP地址尝试了该应用程序并且它有效。
因此,我开始认为这不是连接到端口的问题,而是应用程序的android客户端方面的问题。但我无法弄清楚出了什么问题。
顺便说一句,当我尝试发送消息时,运行客户端的手机和运行服务器的笔记本电脑都连接到同一网络。
答案 0 :(得分:1)
好的,我终于通过greenapps的建议找到了问题。基本上,事实证明防火墙阻止了我计算机上与java平台的任何传入连接。
解决此问题: