Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 Java TcpListener 小应用程序。现在我想通过 Internet 使其可用于 TcpClient(目前,我仅在本地使用它)。哪种服务可以帮助我托管?我熟悉使用 Web 服务器托管,但为此我只需要 TCP/IP 层,我是新手。
谢谢
您只需在连接到 Internet 的服务器(计算机)上运行您的应用程序。并打开您正在监听的端口。因此,您的客户可以通过 IP 和 PORT 礼服到达它。如果您需要通过 Internet 访问,您将需要一个可通过 Internet 访问的计算机的公共 IP。
您不需要为此使用 Web 服务器(对于 Web 托管),但您需要检查随之而来的许多其他安全问题。