- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
基本上是一个从服务器请求图像的html文件,我创建了一个执行响应操作的服务器,但是当对图像的html请求时,服务器完全发送图像,但客户端浏览器保持加载图像并说“从服务器传输数据”,我在互联网上进行了研究,发现只需关闭连接即可完成,但它对我不起作用。
这是我用 java 构建服务器的代码:
package lesson1;
import java.io.*;
import java.net.*;
import java.lang.Exception;
public class SecClass{
BufferedReader fd;
String link = null, HTMLData = null, WEBROOT = "D:/PDT1";
String ptr = null, directory = null,
GET_HEAD_POST = null, Protocol = null;
ServerSocket SRVSOCK;
Socket SOCK;
DataOutputStream dOut;
DataInputStream dInput;
InputStreamReader IR;
public static void main(String[] args) throws Exception
{
SecClass SERVER = new SecClass();
SERVER.run();
}
public void run() throws Exception
{
SRVSOCK = new ServerSocket(80);
while(true){
SOCK = SRVSOCK.accept();
new Thread(new SocketThread(SOCK)).start();
}
}
public class SocketThread implements Runnable {
@SuppressWarnings("unused")
private Socket socket;
public SocketThread(Socket socket) {
this.socket = socket;
}
@Override
public void run() {
try{
dOut = new DataOutputStream(SOCK.getOutputStream());
}catch(Exception ie){
System.out.println("Cound'nt create dOut");
}
try{
IR = new InputStreamReader(SOCK.getInputStream());
}catch(Exception ie){
System.out.println("Cound'nt create IR");
}
BufferedReader BR = new BufferedReader(IR);
String MESSAGE = null;
System.out.println("Received Request!");
try{
MESSAGE = BR.readLine();
}catch(Exception ie){
System.out.println("Cound'nt Receive Message");
}
System.out.println(MESSAGE);
if(MESSAGE != null && MESSAGE.contains("HTTP/")){
Protocol = MESSAGE.substring(MESSAGE.length()-8);
System.out.println("Request protocol is " + Protocol);
} else {
System.out.println("It's a Not HTTP request");
}
if(MESSAGE != null && MESSAGE.contains("GET ")){
GET_HEAD_POST = "GET ";
System.out.println("Reqest is GET");
ptr = MESSAGE.substring(4);
directory = ptr.substring(0,ptr.length()-9);
link = ptr.substring(ptr.length() - 10);
System.out.println(link);
} else if(MESSAGE != null && MESSAGE.contains("HEAD ")){
System.out.println("Request is HEAD");
GET_HEAD_POST = "HEAD ";
ptr = MESSAGE.substring(5);
directory = ptr.substring(0,ptr.length()-9);
link = ptr.substring(ptr.length() - 10);
} else if(MESSAGE != null && MESSAGE.contains("POST ")){
System.out.println("Request is POST");
} else {
System.out.println("Cound'nt verify request");
try{
SRVSOCK.close();
}catch(Exception ie){
System.out.println("Could not close SRVSOCK");
}
try{
SOCK.close();
}catch(Exception ie){
System.out.println("Could not close SOCK");
}
}
if(MESSAGE == null)
{
System.out.println("Unknown request");
try{
SOCK.close();
}catch(Exception ie){
System.out.println("Could not close SOCK");
}
} else {
if((link.charAt(0)) == '/' && link != null){
link = WEBROOT + directory + "index.html";
try{
OpenFile();
dOut.close();
SOCK.close();
System.out.println("Came out of Openfile Func");
}catch(Exception ie){
System.out.println("Could not Call for OpenFile Function");
}
try{
MESSAGE = BR.readLine();
}catch(Exception ie){
System.out.println("Could not Receive message");
}
System.out.println(MESSAGE);
} else {
System.out.println("User Requested for a file");
System.out.println(directory);
link = WEBROOT + directory;
try{
OpenFile();
dOut.close();
SOCK.close();
}catch(Exception ie){
System.out.println("Could not Call for OpenFile Function");
}
}
}
}
}
public void OpenFile() throws Exception{
try (BufferedReader br = new BufferedReader(new FileReader(link))) {
String line;
System.out.println("Request Link is: " + link);
while ((line = br.readLine()) != null) {
System.out.println(line);
dOut.writeBytes(line);
}
dOut.flush();
dOut.close();
SOCK.close();
} catch(Exception e){
System.out.println(link);
dOut.writeBytes("<html><h1>404 File Not Found</h1></html>");
System.out.println("File Does not Exist");
}
}
}
这是我的 HTML 代码:
<html>
<head>
<meta charset="utf-8"/>
<title>hello</title>
</head>
<body>
<header>
<div class="HeaderBox">
<img src="logo.png" alt="image" class="logoBox"/>
</div>
</header>
</body>
</html>
如您所见,当图像完全传输时,我已尝试两次关闭服务器上的连接,但在我的浏览器中,它停留在加载状态,底部显示正在从 127.0.0.1 传输数据
最佳答案
首先移动除ServerSocket SRVSOCK之外的所有字段;从 SecClass 类到 SocketThread 类。使套接字为SOCK; run() 方法中的本地引用。原因是您的代码正在使用多线程。因此将它们移至 SocketThread 类。还可以移动 OpenFile() 以实现更简洁的方法。
您对不同的线程请求使用相同的 SOCK 引用。并且在关闭时您会引用 SOCK 字段。这就是错误行为的原因。最可能发生的情况是一个线程由于不正确的 SOCK 引用而关闭了另一个线程的套接字。
您需要做的是:
public void run() throws Exception
{
SRVSOCK = new ServerSocket(8088);
while(true){
Socket SOCK;
SOCK = SRVSOCK.accept();
new Thread(new SocketThread(SOCK)).start();
}
}
并且在 SocketThread 中不要引用使用 SOCK 。例如。 SOCK.getInputStream() 。更改为使用 SocketThread 字段的 socket.getInputStream()
。以同样的方式改变其他人。
至于图像未渲染的原因:将 OpenFile() 更改为:
public void OpenFile() throws Exception{
try (FileInputStream br = new FileInputStream (link)) {
System.out.println("Request Link is: " + link);
int i;
while ((i = br.read()) > -1)
dOut.write(i);
dOut.flush();
dOut.close();
SOCK.close();
} catch(Exception e){
System.out.println(link);
dOut.writeBytes("<html><h1>404 File Not Found</h1></html>");
System.out.println("File Does not Exist");
}
}
更改基本上是以字节形式读取文件并将其作为字节写入响应流。而您的情况发生的是您将其作为字符串读取。
您可以查看 link使用阅读器与输入流读取文件之间的区别。
对我有用。让我知道它是否对您有用。
关于java - java中如何通过socket发送EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38776187/
基于 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 年前。
我是一名优秀的程序员,十分优秀!