The method format(String, Object[]) in the type String is not applicable for the arguments
packagecom.chatroom;importjava.io.IOException;importjava.net.ServerSocket;importjava....
package com.chatroom;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class ServerChat {
public static void main(String[] args){
new ServerChat().startUp();
}
public void startUp(){
ServerSocket ss= null;
Socket s= null;
String name = "[%s:%s]";//后面放端口
try {
ss=new ServerSocket(12345);
System.out.println("服务器已启动...");
s = ss.accept();
System.out.println(String.format( name,s.getInetAddress().getHostAddress(),s.getPort()));
} catch (IOException e) {
,
e.printStackTrace();
} finally{
try {
if (s!=null) ss.close();
if (ss!=null) s.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} 展开
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
public class ServerChat {
public static void main(String[] args){
new ServerChat().startUp();
}
public void startUp(){
ServerSocket ss= null;
Socket s= null;
String name = "[%s:%s]";//后面放端口
try {
ss=new ServerSocket(12345);
System.out.println("服务器已启动...");
s = ss.accept();
System.out.println(String.format( name,s.getInetAddress().getHostAddress(),s.getPort()));
} catch (IOException e) {
,
e.printStackTrace();
} finally{
try {
if (s!=null) ss.close();
if (ss!=null) s.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
} 展开
展开全部
Format方法有两种形式,另外一种是三个参数的,主要区别在于它是线程安全的, 但并不多用,所以这里只对第一个介绍。Format参数是一个格式字符串,用于格式化Args里面的值的。Args是一个变量数组,即它里面可以有多个参数,而且每个参数可以不同。 例如:
Format("my name is %6s","wind");
返回的是:my name is wind
Format里面可以写普通的字符串,比如"my name is" ,但有些格式指令字符具有特殊意义,比如"%6s"
格式指令具有以下的形式: "%" [index ":"] ["-"] [width] ["." prec] type
它是以"%"开始,而以type结束,type表示一个具体的类型。中间是用来格式化type类型的指令字符,是可选的。
Format("my name is %6s","wind");
返回的是:my name is wind
Format里面可以写普通的字符串,比如"my name is" ,但有些格式指令字符具有特殊意义,比如"%6s"
格式指令具有以下的形式: "%" [index ":"] ["-"] [width] ["." prec] type
它是以"%"开始,而以type结束,type表示一个具体的类型。中间是用来格式化type类型的指令字符,是可选的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询