- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
服务器:
import java.net.*;
import java.io.*;
import javax.swing.text.html.HTMLEditorKit;
public class TCPReceiver implements Runnable
{
private Settings s;
private int portTCP;
private BlackAndWhite2GUI gui;
private ServerSocket ss = null;
private InputStream in = null;
public TCPReceiver(Settings s,BlackAndWhite2GUI gui)
{
this.s = s;
this.gui = gui;
}
@Override
public void run()
{
startTCP();
}
public void startTCP()
{
final int BACKLOG=100;
final int BUFSIZE=32;
int recVMsgSize;
Socket client = null;
byte[] receiveBuf = new byte[BUFSIZE];
String content = new String();
try
{
ss=new ServerSocket(s.insideLocalPort,BACKLOG,s.insideLocal); //Port "0" means that the function will automatically set this property
portTCP = ss.getLocalPort();
s.outsideLocalPort = (s.insideLocalPort = portTCP);
gui.updateTable();
while(true)
{
client = ss.accept();//wait for incomming connections
in = client.getInputStream();
while((recVMsgSize = in.read(receiveBuf)) != -1)
{
System.out.println("Receiving TCP window...");
content+=(receiveBuf.toString());
}
gui.appendMessage(new MessageEntity(client.getInetAddress(),client.getPort(),content));
in.close();
client.close();//We are done with this client!
}
}
catch(SocketException e)
{
e.printStackTrace();
}
catch(IOException e)
{
e.printStackTrace();
}
}
public int getPort()
{
return portTCP;
}
public void stopServer()
{
try
{
if(in != null) in.close();
if(ss != null) ss.close();
}
catch(IOException e)
{
e.printStackTrace();
}
}
}
客户:
import java.net.*;
import java.io.*;
public class SocketNatTest()
{
public static void main(String[] args)
{
if(args[0].equals("--help")
{
showHelp();
return;
}
Inet4Address global = null;
Inet4Address local = null;
try
{
global = (Inet4Address)InetAddress.getByName(args[0]);
local = (Inet4Address)InetAddress.getByName(args[1]);
}
catch(UnknownHostException e)
{
e.printStackTrace();
}
int port = Integer.parseInt(args[2]);
byte[] content = args[4].getBytes();
if(args[3].equals("UDP")) sendUDP(global,local,port,content);
if(args[4].equals("TCP")) sendTCP(global,local,port,content);
}
public static void sendTCP(Inet4Address global,Inet4Address local,int port,byte[] content)
{
Socket s = null;
OutputStream os = null;
try
{
s = new Socket(global,port,local,port);
os = s.getOutputStream();
os.write(content);
s.close();
os.close();
}
catch(IOException e)
{
e.printStackTrace();
}
}
}
调用:
java SocketNatTest 83.6.243.[rest of server's inside global ip] 192.168.1.111 52247 TCP Hello
服务器端的 Netstat 条目:
输出:
java SocketNatTest 83.6.243.[censored] 192.168.1.111 52247 TCP Hello
java.net.BindException: Can't assign requested address
at java.net.PlainSocketImpl.socketBind(Native Method)
at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.java:353)
at java.net.Socket.bind(Socket.java:594)
at java.net.Socket.<init>(Socket.java:390)
at java.net.Socket.<init>(Socket.java:293)
at SocketNatTest.sendTCP(SocketNatTest.java:48)
at SocketNatTest.main(SocketNatTest.java:38)
为什么会出现这样的错误?我只想向局域网内的服务器发送一个简单的信息。
最佳答案
您提供了一个非本地 IP 地址作为第二个参数,或者“端口”已在本地使用。为什么要指定本地地址和端口?不要那样做。只需删除这两个参数。让系统决定它们。
关于java - "java.net.BindException: Can' t 分配请求地址 "on client' s 端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19164213/
我已经在 JBoss Fuse 服务器中部署了一些 jar,它在端口 9001 和 9002 上公开了两个 rest 端点。现在我对源代码进行了一些更改,并想部署一个新的 jar。因为我正在进行热
我希望我的客户端应用程序能够连接到服务器应用程序。 问题是我的客户端不知道服务器 IP(在 LAN 中)。 所以我尝试使用java对象MulticastSocket。幸运的是,Oracle 有一个页面
我有 3 个服务器,我在这些服务器中运行以下代码。然而其中之一给出了错误: Exception in thread "main" java.net.BindException: Address alr
通过 java 发出出站请求时(使用 apache.commons.httpclient ),我得到 Permission denied 。以下是 jboss 日志中的根本原因: Caused by:
我正在尝试启动我的 elasticsearch 节点,但出现以下错误 Exception in thread "main" BindTransportException[Failed to bind
我的 serverThreadProc() 方法有问题。每当我运行它时,它都会抛出一个 BindException。认为 try block 的前两行可能存在问题。不知道我做错了什么。 private
当获得BindException时,有没有办法知道使用哪个端口?似乎表明有一个端口已被使用,但不知道是哪个端口。这对于加快调试速度很有用。 最佳答案 当您的程序尝试绑定(bind)到已在使用的端口时,
当我在输入字段中输入诸如“adsf”之类的字母时,spring 尝试将其绑定(bind)到“Code”对象的价格( double )属性,这会导致绑定(bind)异常。如果我想将该字段保留为 doub
我需要一些帮助,我想我遇到了一个简单的网络相关问题。通过了解没有被 .close() 处理的内容,它也将帮助我更好地理解所有这些是如何工作的。我敢肯定这很简单,但对我来说这一切都是全新的。这是客户端程
我理解为什么会发生绑定(bind)错误,但我已按照我能找到的任何解决方案进行操作,但无法使其正常工作。 堆栈跟踪 java.net.BindException: Address already in
向addUser Controller 提交表单时发生异常 SEVERE: Servlet.service() for servlet dispatcherServlet threw exceptio
我正在使用DIY catridge将uaa(https://github.com/cloudfoundry/uaa)部署到Openshift。在执行gradlew run时,出现以下错误: remot
我有一个带有发布请求的 Controller 。我正在尝试使用简单的 NotNull 注释来验证 POJO。我正在使用 ControllerAdvice 来处理异常。 @PostMapping("/s
我有一个带有发布请求的 Controller 。我正在尝试使用简单的 NotNull 注释来验证 POJO。我正在使用 ControllerAdvice 来处理异常。 @PostMapping("/s
我是套接字编程的新手,只是尝试编写一个小程序来了解套接字的工作原理。有一个客户端和一个服务器,我只是尝试从服务器加载一些字符串并显示。但是每次我创建一个服务器套接字时,即使我手动清理了finally
尝试在 openfire 中定义数据库设置时,出现以下错误(正如我在 error.log 文件中看到的那样) 2013.08.14 11:00:23 org.jivesoftware.openfire
我在运行 gwt 应用程序时遇到以下错误。 java.net.BindException: Address already in use: bind at sun.nio.ch.Net.bind(Na
我的网络有问题... protected Void doInBackground(Void... arg0) { int nreq = 1; Syste
我一直遇到这个错误:“新 ServerSocket 上的异常:java.net.BindException:无法分配请求的地址:JVM_Bind”。我尝试使用 netstat 来确保端口(1500)上
我在使用 Android 时看到了几个关于 SocketException 的问题,但没有一个问题涉及我在 list 中指定的 INTERNET 权限下得到的 BindException。 这是我的
我是一名优秀的程序员,十分优秀!