Tag: 端 服务器

我在Java中输入IP时无法连接到我的服务器

好的,所以我正在尝试学习Java客户端/服务器的东西,并按照以下方式阅读教程代码。 当我将“localhost”更改为我的ip时它会停止工作。 请帮忙。 编辑:“127.0.0.1”似乎也有效,但不是我真正的IP。 /* * Copyright (c) 1995 – 2008 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * – Redistributions of source code must retain the above copyright * […]

Java:检测客户端与服务器端的连接

我正在使用Socket和ServerSocket编写Java客户端/服务器程序。 多个客户端一次连接到服务器。 检查客户端连接是否与服务器端断开连接的最佳方法是什么? 现在,我只是在尝试写入断开连接的客户端时遇到SocketException。