- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我的要求是使用 VB.net 作为客户端,使用 Java 作为服务器,通过 TCP/IP 进行字符串通信。我尝试了各种方法,但没有得到想要的结果。初步分析是因为客户端传过来的字符串是字节,而服务器的readLine方法是读取字符形式的字符串,所以无法识别换行符来终止readLine。我尝试了各种方法,甚至是 vbCrLf,但它无法正确识别字符。我不能在 java 中使用 read(byte[]),因为服务器被用于发送各种长度字符串的多个应用程序。请指导我如何在不更改服务器代码的情况下实现这一目标。客户端和服务器代码如下。我也附上了示例工作 Java 客户端代码。
VB.net 客户端代码:
Imports System.Net.Sockets
Imports System.Text
Imports System.Threading
Imports System.IO
Public Class Form1
Inherits System.Windows.Forms.Form
Dim clientSocket As New TcpClient
Dim serverStream As NetworkStream
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label
Me.Button1 = New System.Windows.Forms.Button
Me.TextBox1 = New System.Windows.Forms.TextBox
Me.SuspendLayout()
Me.Label1.Location = New System.Drawing.Point(8, 32)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(272, 64)
Me.Label1.TabIndex = 0
Me.Button1.Location = New System.Drawing.Point(88, 200)
Me.Button1.Name = "Button1"
Me.Button1.TabIndex = 1
Me.Button1.Text = "Enter"
Me.TextBox1.Location = New System.Drawing.Point(80, 144)
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.TabIndex = 2
Me.TextBox1.Text = ""
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.Label1)
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
msg("Client Started")
clientSocket.Connect("localhost", 4447)
Label1.Text = "Client Socket Program - Server Connected .."
Catch ex As Exception
msg("Exception occurred while connecting to server")
End Try
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
Dim sMsgToHost As String
Dim bw As New IO.BinaryWriter(clientSocket.GetStream)
sMsgToHost = "Sending a Test String" + vbCrLf
bw.Write(sMsgToHost)
bw.Flush()
Thread.Sleep(5000)
Dim reader As New BinaryReader(clientSocket.GetStream)
Dim bytes(clientSocket.ReceiveBufferSize) As Byte
reader.Read(bytes, 0, CInt(clientSocket.ReceiveBufferSize))
Dim returndata As String = Encoding.UTF8.GetString(bytes)
reader.Close()
clientSocket.Close()
serverStream.Close()
Catch ex As Exception
msg("Exception occurred while sending and recieving data")
End Try
End Sub
Sub msg(ByVal mesg As String)
Label1.Text = ""
Label1.Text = mesg
End Sub
End Class
Java 服务器代码:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
public class TCPServerTest {
public static void main(String[] args) {
int port = 4447;
PrintWriter out = null;
BufferedReader in = null;
String strTempString = null;
StringBuffer sbInputStringBuf = null;
String tempString1 = null;
String strResponse = null;
Socket socket = null;
try{
ServerSocket serverSocket = new ServerSocket(port);
while(true){
socket = serverSocket.accept();
out = new PrintWriter(socket.getOutputStream(), true);
in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
System.out.println("Waiting for Message123.");
while ((strTempString = in.readLine()) != null && !strTempString.equals("")){
if(sbInputStringBuf == null){
sbInputStringBuf = new StringBuffer();
}
sbInputStringBuf.append(strTempString);
}
tempString1 = sbInputStringBuf.toString();
System.out.println("Request is : " + tempString1);
strResponse = "The Sent String was : " + tempString1;
out.println(strResponse + "\n");
out.flush();
}
}
catch (Exception e) {
e.printStackTrace();
}
finally{
try{
out.close();
in.close();
socket.close();
}
catch (Exception e){
e.printStackTrace();
}
}
}
}
工作 Java 客户端代码:
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;
import java.net.UnknownHostException;
public class Client {
public static void main(String[] args) throws IOException{
Socket socket = null;
String host = "10.122.1.27";
int port = 4447;
PrintWriter out = null;
BufferedReader in = null;
String fromServer;
String fromUser;
try {
System.out.println("Inside main() of TCPClient");
socket = new Socket(host, port);
System.out.println("Socket Created...");
out = new PrintWriter(socket.getOutputStream(), true);
System.out.println("out Object Created...");
in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
System.out.println("in Object Created...");
}
catch (UnknownHostException e) {
System.out.println("Don't know about host : " + host);
e.printStackTrace();
System.exit(1);
}
catch (IOException e) {
System.out.println("Couldn't get I/O for the connection to : " + host);
e.printStackTrace();
System.exit(1);
}
fromUser="NSDL|AFAPL2503G\n";
System.out.println("Sending : " + fromUser);
out.println(fromUser); // Writing the PAN in output stream
/* Reading the NSDL response from input stream */
if((fromServer = in.readLine()) != null){
System.out.println("From Server : " + fromServer);
}
out.write(fromServer);
out.close();
in.close();
socket.close();
}
}
最佳答案
您的 VB 客户端使用 UTF-8 作为编码,而您的 Java 代码未指定任何编码。这意味着您的服务器正在使用平台默认值,即 Windows 上的 CP-1252。
替换这一行
in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
有了这个
in = new BufferedReader(new InputStreamReader(socket.getInputStream()), "UTF-8");
关于java - VB.net 客户端和 Java 服务器之间的 TCP/IP 通信,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22764336/
我是 ZMQ 的新手。我发现 ZMQ 套接字实现比 winsock 简单得多。但我怀疑 “使用 ZMQ TCP 套接字创建的客户端可以与传统的 TCP 服务器通信吗?” 换句话说我的 ZMQ 客户端可
我想使用 TCP 协议(protocol) 将数据发送到 Logstash。为了发送数据,我正在使用 Node-RED。一个简单的配置如下所示: 在 Logstash 文件夹中,我创建了一个名为 no
当我尝试更改窗口缩放选项时,作为 root,我可以通过在 /proc/sys/net/中执行 net.ipv4.tcp_mem=16777000 来更改值。如果我必须更改这 100 个系统,那将需要大
明天做一些练习题,这道做不出来 TCP 服务器连接 TCP 客户端进行通信所需的最小套接字端口数是多少? 肯定只有两个吧?一个用于服务器,一个用于客户端,但这似乎是显而易见的。我的伙伴们认为 TCP
考虑一个存在一个服务器和多个客户端的场景。每个客户端创建 TCP 连接以与服务器交互。 TCP alive的三种用法: 服务器端保活:服务器发送 TCP 保活以确保客户端处于事件状态。如果客户端死了,
TCP TAHOE 和 TCP RENO 有什么区别。 我想知道的是关于 3-dup-ack 和超时的行为? SST 发生了什么变化? 谢谢! 最佳答案 TCP Tahoe 和 Reno 是处理 TC
大家早上好。我一直在阅读(其中大部分在堆栈溢出中)关于如何进行安全密码身份验证(散列 n 次,使用盐等)但我怀疑我将如何在我的 TCP 客户端中实际实现它-服务器架构。 我已经实现并测试了我需要的方法
在遍历 RFC793 时,我开始知道应该以这种方式选择初始序列号段重叠被阻止。 有人能解释一下如果发生重叠,重复段将如何影响 TCP? 最佳答案 不同的操作系统有不同的行为。参见 http://ins
你能举例说明一下tcp/ip中nagle算法的概念吗? 最佳答案 我认为Wikipedia在开头的段落中做得很好。 Nagle's document, Congestion Control in IP
似乎最大 TCP 接收窗口大小为 1GB(使用缩放时)。因此,仍然可以用一个连接填充 100Gb 管道的最大 RTT 是 40ms(因为 2 * 40E-3 * 100E9/8 = 1GB)。这会将这
考虑在两个 TCP 端点之间建立的 TCP 连接,其中一个调用: 关闭():此处,不允许进一步读取或写入。 关机(fd,SHUT_WR):这会将全双工连接转换为单工连接,其中调用 SHUT_WR 的端
我是在 Lua 中编写解析器的新手,我有两个简短的问题。我有一个包含 TCP 选项的数据包,如 MSS、TCP SACK、时间戳、NOP、窗口比例、未知。我基本上是在尝试剖析 TCP 选项字段中的未知
TCP 是否不负责通过在传输过程中发生丢失等情况时采取任何可能必要的措施来确保通过网络完整地发送流? 它做的不对吗? 为什么更高的应用层协议(protocol)及其应用程序仍然执行校验和? 最佳答案
考虑使用 10 Mbps 链路的单个 TCP (Reno) 连接。假设此链路不缓冲数据并且接收方的接收缓冲区比拥塞窗口大得多。设每个 TCP 段的大小为 1500 字节,发送方和接收方之间连接的双向传
考虑这样一个场景,有client-a和server-b。 server-b 禁用了 TCP keepalive。 server-b 没有任何应用程序逻辑来检查 TCP 连接是否打开。 client-a
我正在尝试用 Rust 编写回显服务器。 use std::net::{TcpStream, TcpListener}; use std::io::prelude::*; fn main() {
听说对于TCP连接,服务器会监听一个端口,并使用另一个端口发送数据。 例如,Web 服务器监听端口 80。每当客户端连接到它时,该服务器将使用另一个端口(比如 9999)向客户端发送数据(Web 内容
我试图了解带有标记 PSH 和标记 URG 的 TCP 段之间的区别。我阅读了 RFC,但仍然无法理解,其中一个在将数据发送到进程之前缓冲数据而另一个没有吗? 最佳答案 它们是两种截然不同的机制。 #
有第三方服务公开 TCP 服务器,我的 Node 服务器(TCP 客户端)应使用 tls Node 模块与其建立 TCP 连接。作为 TCP 客户端, Node 服务器同时也是 HTTP 服务器,它应
我正在发送一些 TCP SYN 数据包以获得 TCP RST 的返回。为了识别每个探测器,我在 TCP 序列字段中包含一个计数器。我注意到以下几点: 当SYN probe中的sequence numb
我是一名优秀的程序员,十分优秀!