fsockopen 10053 error when writing Chars to Java socket(将字符写入 Java 套接字时出现 fsockopen 10053 错误)
问题描述
Right,
I'm trying to write a wee script in PHP that will send an in game chat package to Minecraft.
//Deliberately low timeout
$mc = fsockopen("localhost", 25565, $errno, $err, 3);
Now, if that connects successfully, then I send 2 "packets".
A single byte with the integer 3 in it to tell Minecraft that it should handle the incoming network traffic as a Packet3Chat "packet":
fwrite( $mc, strrev( pack( "C", 3 ) ) );
This appears to work A-OK**.
The second "packet" that is required is the length of the string as a signed short.
$my_string = "Hello World!";
//119 character limit on Minecraft chat messages
$processed_string = substr($my_string, 0, 119);
fwrite($mc, strrev( pack( "s", strlen( $processed_string ) ) ) );
And that also appears to work A-OK**.
And now all that's left to do is send the actual string, as chars.
I have tried splitting the string using str_split
and sending each character on it's own using both:
//Signed char
fwrite($mc, strrev( pack( "c", $character ) ) );
and
//Unsigned char
fwrite($mc, strrev( pack( "C", $character ) ) );
And I've also tried just sending the whole string by those methods without splitting it up, however I haven't been able to successfully print out the characters received by readChar()
(System.out.println
just prints an empty line), and I get an fwrite error 10053 at some point during the sending of the characters - i.e. an EOFException
is thrown by readChar()
.
I'm running the modified Minecraft Server on Windows 7 and I'm running PHP 5.x using XAMPP on the same machine.
Any ideas why the connection would be "closed by software"? And why it would close only during the sending of the characters/string and not during the sending of the byte/short?
** Yes I have used
System.out.println
to verify the data received by Minecraft.10053 is the winsock error code for WSAECONNABORTED.
An "understandable" explaination of that error condition can be found at http://www.chilkatsoft.com/p/p_299.asp
这篇关于将字符写入 Java 套接字时出现 fsockopen 10053 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将字符写入 Java 套接字时出现 fsockopen 10053 错误
- 未找到/usr/local/lib 中的库 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 转换 ldap 日期 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 获取数字的最后一位 2022-01-01