- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将我从 theneboston.com 学到的客户端-服务器应用程序转换为 Android 应用程序,它是一个使用套接字(TCP 连接)进行通信的即时消息应用程序,在我的 Android 应用程序中,一个设备是服务器,另一个是客户。现在在模拟器上运行服务器端应用程序时出现问题,应用程序卡住大约 40 秒,然后弹出一条错误消息说:
Activity ServerIM (in application Android Server Instant Messaging ) is not responding
我认为问题在于创建 ServerSocket。我真的需要这个,所以我很感激任何人都可以帮助我度过难关。
这是我的 ServeIM
Android 类:
package com.example.android.server.instant.messenger;
import java.io.EOFException;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.net.ServerSocket;
import java.net.Socket;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ScrollView;
import android.widget.TextView;
import android.view.View.OnClickListener;
public class ServerIM extends Activity {
private ScrollView scrollView;
private EditText userText;
private Button connectButton;
private Button sendButton;
private TextView chatLog;
private ObjectOutputStream output;
private ObjectInputStream input;
private ServerSocket server;
private Socket connection;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_server_im);
scrollView = (ScrollView) findViewById(R.id.ScrollView);
userText = (EditText) findViewById(R.id.user_Text);
connectButton = (Button) findViewById(R.id.button_connect);
sendButton = (Button) findViewById(R.id.button_send);
chatLog = (TextView) findViewById(R.id.chat_Log);
ableToType(false);
connectButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
showMessage("1"); // this message doesn't appends to the
// TextView
startRunning();
}
});
}
public void startRunning() {
try {
(new Thread(new Runnable() {
public void run() {
try {
server = new ServerSocket(5678, 100);
} catch (IOException e) {
e.printStackTrace();
}
}
})).start();
while (true) {
try {
waitForConnection();
setupStreams();
whileChatting();
} catch (EOFException eofException) {
showMessage("\n Server ended the connection!");
} finally {
closeCrap();
}
}
} catch (IOException ioException) {
ioException.printStackTrace();
}
}
// wait for connection, then display connection information
private void waitForConnection() throws IOException {
showMessage("Waiting for someone to connect... \n");
connection = server.accept();
showMessage("Now connected to "
+ connection.getInetAddress().getHostName());
}
// get stream to send and recieve data
private void setupStreams() throws IOException {
output = new ObjectOutputStream(connection.getOutputStream());
output.flush();
input = new ObjectInputStream(connection.getInputStream());
showMessage("\n Streams are now setup! \n");
}
// during the chat conversation
private void whileChatting() throws IOException {
String message = " You are now connected! ";
sendMessage(message);
ableToType(true);
do {
// have a conversation
try {
message = (String) input.readObject();
showMessage("\n" + message);
} catch (ClassNotFoundException classNotFoundException) {
showMessage("\n idk wtf that user sent! ");
}
} while (!message.equals("CLIENT - END"));
}
// close streams ans sockets after you are done chatting
private void closeCrap() {
showMessage("\n Closing Connections... \n");
ableToType(false);
try {
output.close();
input.close();
connection.close();
} catch (IOException ioException) {
ioException.printStackTrace();
}
}
// send message to client
private void sendMessage(String message) {
try {
output.writeObject("SERVER - " + message);
output.flush();
showMessage("\n Server - " + message);
} catch (IOException ioException) {
chatLog.append("\n ERROR: I can't send this message");
}
}
// update chatWindow
private void showMessage(final String text) {
final Handler myHandler = new Handler();
(new Thread(new Runnable() {
public void run() {
myHandler.post(new Runnable() {
public void run() {
chatLog.append(text + "\n");
}
});
}
})).start();
}
// let the user type stuff into their box
private void ableToType(final boolean tof) {
final Handler myHandler = new Handler();
(new Thread(new Runnable() {
public void run() {
myHandler.post(new Runnable() {
public void run() {
userText.setEnabled(tof);
}
});
}
})).start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_server_im, menu);
return true;
}
}
这是 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" >
<ScrollView
android:id="@+id/ScrollView"
android:layout_width="fill_parent"
android:layout_height="150dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" >
<TextView
android:id="@+id/chat_Log"
android:layout_width="wrap_content"
android:layout_height="339dp"
android:text="" />
</ScrollView>
<EditText
android:inputType="text"
android:id="@+id/user_Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/ScrollView"
android:layout_marginTop="39dp"
android:ems="10" />
<Button
android:id="@+id/button_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/user_Text"
android:layout_toRightOf="@+id/user_Text"
android:minWidth="100dip"
android:text="Send" />
<Button
android:id="@+id/button_connect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button_send"
android:layout_alignRight="@+id/button_send"
android:layout_below="@+id/button_send"
android:text="Connect" />
</RelativeLayout>
和 list :
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.server.instant.messenger"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".ServerIM"
android:label="@string/title_activity_server_im" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
最佳答案
ServerSocket.accept()
函数在 UI 线程中运行,并将阻塞直到它获得连接。
您的想法是正确的,在不同的线程中创建 ServerSocket
,但是您必须在后台运行 accept()
函数。
关于java - 我在这里做错了什么 : Android Socket Connection?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13031548/
基于 socket.io 的官方网站 http://socket.io/#how-to-use , 我找不到任何术语。socket.emit 、 socket.on 和 socket.send 之间有
我正在使用 lua-socket 3.0rc1.3(Ubuntu Trusty 附带)和 lua 5.1。我正在尝试监听 unix 域套接字,我能找到的唯一示例代码是 this -- send std
这两者有什么区别? 我注意到如果我在一个工作程序中从 socket.emit 更改为 socket.send ,服务器无法接收到消息,虽然我不明白为什么。 我还注意到,在我的程序中,如果我从 sock
使用套接字在两台服务器之间发送数据是个好主意,还是应该使用 MQ 之类的东西来移动数据。 我的问题:套接字是否可靠,如果我只需要一次/有保证的数据传输? 还有其他解决方案吗? 谢谢。 最佳答案 套接字
引自 this socket tutorial : Sockets come in two primary flavors. An active socket is connected to a
我已经安装了在端口81上运行的流服务器“Lighttpd”(light-tpd)。 我有一个C程序,它使用套接字api创建的服务器套接字在端口80上监听http请求。 我希望从客户端收到端口80上的请
这是我正在尝试做的事情: 当有新消息可用时,服务器会将消息发送给已连接的客户端。另一方面,客户端在连接时尝试使用send()向服务器发送消息,然后使用recv()接收消息,此后,客户端调用close(
如何将消息发送到动态 session 室,以及当服务器收到该消息时,如何将该消息发送到其他成员所在的同一个 session 室? table_id是房间,它将动态设置。 客户: var table_i
这是我尝试但不起作用的方法。我可以将传入的消息从WebSocket连接转发到NetSocket,但是只有NetSocket收到的第一个消息才到达WebSocket后面的客户端。 const WebSo
我正在实现使用boost将xml发送到客户端的服务器。我面临的问题是缓冲区不会立即发送并累积到一个点,然后发送整个内容。这在我的客户端造成了一个问题,当它解析xml时,它可能具有不完整的xml标记(不
尝试使用Nginx代理Gunicorn套接字。 /etc/systemd/system/gunicorn.service文件 [Unit] Description=gunicorn daemon Af
我正在使用Lua套接字和TCP制作像聊天客户端和服务器这样的IRC。我要弄清楚的主要事情是如何使客户端和服务器监听消息并同时发送它们。由于在服务器上执行socket:accept()时,它将暂停程序,
我看了一下ZMQ PUSH/PULL套接字,尽管我非常喜欢简单性(特别是与我现在正在通过UDP套接字在系统中实现的自定义碎片/ack相比),但我还是希望有自定义负载平衡功能,而不是幼稚的回合-robi
我正在编写一个应用程序,其中有多个 socket.io 自定义事件,并且所有工作正常,除了这个: socket.on("incomingImg", function(data) {
在我的应用程序中,我向服务器发送了两条小消息(类似 memcached 的服务)。在类似 Python 的伪代码中,这看起来像: sock.send("add some-key 0") ignored
很抱歉再次发布此问题,但大多数相关帖子都没有回答我的问题。我在使用 socket.io 的多个连接时遇到问题我没有使用“socket.socket.connect”方法,但我从第一次连接中得到了反馈。
我尝试使用 socket.io 客户端连接到非 socket.io websocket 服务器。但我做不到。我正在尝试像这样连接到套接字服务器: var socket = io.connect('ws
我遇到了一个奇怪的问题。在我非常基本的服务器中,我有: server.listen(8001); io.listen(server); var sockets = io.sockets; 不幸的是,套
我正在使用带套接字 io 的sailsjs。帆的版本是 0.10.5。我有以下套接字客户端进行测试: var socketIOClient = require('socket.io-client');
这个问题在这里已经有了答案: What is the fundamental difference between WebSockets and pure TCP? (4 个答案) 关闭 4 年前。
我是一名优秀的程序员,十分优秀!