- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试创建使用Socket的程序。
我想输入单词,然后将其送回给我。
第一次,它似乎工作正常,但第二次失败。
这是我的源代码。
- - - - - - - - - - -服务器 - - - - - - - - - -
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.ServerSocket;
import java.net.Socket;
public class ServerTestClass {
public static void main(String[] args) {
ServerSocket welcome = null;
Socket Sock = null;
try{
welcome = new ServerSocket(45678);
}catch(IOException e){
System.err.println("error");
}
while(true){
try{
Sock = welcome.accept();
EchoThread echoThread = new EchoThread(Sock,45678);
echoThread.start();
}catch(IOException e){
System.err.println("error 1");
}
}
}
}
class EchoThread extends Thread{
Socket Sock ;
int port;
EchoThread(Socket Sock,int port){
this.port = port;
this.Sock = Sock;
}
public void run(){
OutputStreamWriter output = null;
BufferedReader input = null;
try{
output = new OutputStreamWriter(Sock.getOutputStream());
input = new BufferedReader(new InputStreamReader(Sock.getInputStream()));
while(true){
String word = input.readLine();
output.write(": "+word);
output.flush();
output.close();
input.close();
Sock.close();
break;
}
}catch(IOException e){
System.err.println("error 2");
}
finally{
try{
if(output != null){
output.close();
}
if(input != null){
input.close();
}
if(Sock != null){
Sock.close();
}
}catch(IOException e){
e.printStackTrace();
}
}
}
}
package client;
import java.net.*;
import java.io.*;
import java.util.*;
public class Client
{
public static final int PORT = 45678; // default port
public static void main(String[] args)
{
Socket clientSocket = null;
int port = PORT;
String hostName = null;
try
{ // create socket
clientSocket = new Socket("localhost", port);
}
catch (IOException e)
{
System.err.println("Error Creating Socket");
System.exit(2);
}
catch (NumberFormatException e) {
System.out.println("Port number must be integer between 1024 and 65535");
System.exit(3);
}
OutputStreamWriter output = null;
Scanner input = null;
try
{
output = new OutputStreamWriter(clientSocket.getOutputStream());
input = new Scanner(clientSocket.getInputStream());
Scanner inputData = new Scanner(System.in);
while(true) {
System.out.println("Enter your word: ");
String inputWord = inputData.nextLine();
output.write(inputWord + "\r\n");
output.flush();
if (inputWord.equals(""))
{
break;
}
String outputWord = input.nextLine();
System.out.println(outputWord);
}
input.close();
output.close();
clientSocket.close();
} catch (IOException e)
{
System.err.println("Closing Socket connection");
}
finally {
try {
if (input != null)
input.close();
if (output != null)
output.close();
if (clientSocket != null)
clientSocket.close();
}
catch (IOException e) {
e.printStackTrace();
}
}
}
}
run:
Enter your word:
word
: word
Enter your word:
word
Exception in thread "main" java.util.NoSuchElementException: No line found
at java.util.Scanner.nextLine(Scanner.java:1540)
at client.Client.main(Client.java:49)
Java Result: 1
BUILD SUCCESSFUL (total time: 18 seconds)
最佳答案
while(true) {
System.out.println("Enter your word: ");
String inputWord = "";
inputword = inputData.nextLine();
output.write(inputWord + "\r\n");
output.flush();
if (inputWord.equals(""))
{
break;
}
//String outputWord = input.nextLine();
//System.out.println(outputWord); no need of the commented lines
}
}
关于java - Java套接字错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36794464/
我使用下拉菜单提供一些不同的链接,但我希望这些链接在同一选项卡中打开,而不是在新选项卡中打开。这是我找到的代码,但我对 Javascript 非常缺乏知识 var urlmenu = docume
我对 javascript 不太了解。但我需要一个垂直菜单上的下拉菜单,它是纯 JavaScript,所以我从 W3 复制/粘贴脚本:https://www.w3schools.com/howto/t
我已经坐了 4 个小时,试图让我的导航显示下 zipper 接垂直,但它继续水平显示它们。我无法弄清楚为什么会发生这种情况或如何解决它。 如果有人能告诉我我做错了什么,我将不胜感激。我有一个潜移默化的
我正在尝试创建选项卡式 Accordion 样式下拉菜单。我使用 jQuery 有一段时间了,但无法使事件状态达到 100%。 我很确定这是我搞砸的 JS。 $('.service-button').
对于那些从未访问过 Dropbox 的人,这里是链接 https://www.dropbox.com/ 查看“登录”的下拉菜单链接。我如何创建这样的下 zipper 接? 最佳答案 这是 fiddle
我正在制作一个 Liferay 主题,但我在尝试设计导航菜单的样式时遇到了很多麻烦。我已经为那些没有像这样下拉的人改变了导航链接上的经典主题悬停功能: .aui #navigation .nav li
如果您将鼠标悬停在 li 上,则会出现一个下拉菜单。如果您将指针向下移至悬停时出现的 ul,我希望链接仍然带有下划线,直到您将箭头从 ul 或链接移开。这样你就知道当菜单下拉时你悬停在哪个菜单上。 知
我有一个带有多个下拉菜单的导航栏。因此,当我单击第一个链接时,它会打开下拉菜单,但是当我单击第二个链接时,第一个下拉菜单不会关闭。 (所以如果用户点击第二个链接我想关闭下拉菜单) // main.js
我正在尝试制作一个导航下拉菜单(使用 Bootstrap 3),其中链接文本在同一行上有多个不同的对齐方式。 在下面的代码中,下拉列表 A 中的链接在 HTML 中有空格字符来对齐它们,但是空白被忽略
我希望有人能帮我解决这个 Bootstrap 问题,因为我很困惑。 有人要求我在底部垂直对齐图像和其中包含图像的链接。 我面临的问题是他们还希望链接在链接/图像组合上具有 pull-right,这会杀
我正在构建一个 Rails 应用程序,并希望指向我的类的每个实例的“显示”页面的链接显示在“索引”页面的下拉列表中。我目前正在使用带有 options_from_collection_for_sele
我有以下 Bootstrap3 导航菜单 ( fiddle here )。我想设置“突出显示”项及其子链接与下拉列表 1 和 2 链接不同的链接文本(和悬停)的样式。我还希望能够以不同于 Highli
我对导航栏中的下拉菜单有疑问。对于普通的导航链接(无下拉菜单),我将菜单文本放在 H3 中,但是当我尝试对下 zipper 接执行相同操作时,箭头不在标题旁边,而是在标题下方。我决定用 span 替换
我是一名优秀的程序员,十分优秀!