正如标题所示,我正在尝试创建一个单例类,用于在我的应用程序中跨不同的活动维护TCP套接字。 我几乎是一个绝对的开端,我真的很感谢有人指着我正确的方向。
更新:
这是我写的类的代码:
public static ConnectionManager getInstance() {
if(instance == null) {
instance = new ConnectionManager();
}
return instance;
}
public void send(String str){
try{
PrintWriter out = new PrintWriter(new BufferedWriter(
new OutputStreamWriter(access_point.getOutputStream())),true);
out.println(str);
}
catch(IOException e){
e.printStackTrace();
}
}
}
此处我是如何在其中一项活动上致谢的
private static ConnectionManager command = ConnectionManager.getInstance();
.........
command.send("Turn on");