本周我开始使用Android编程,这是我想通过我的第一个应用程序实现的。我是Java和Android的新手,但我有一些Python经验。
我在我的raspberryPi上运行了一个python服务器,根据收到的命令,它会消除一堆RGB指示灯。
我现在正在尝试构建一个通过套接字向服务器发送命令的Android应用。
有一个输入框和一个按钮:当按下按钮时,我希望输入的数据被发送到服务器。
我写了它并且它有效,但我相信我的实现有问题。我希望应用程序打开套接字连接,并在保持打开状态时将命令发送到服务器。
单击此按钮时,按钮会将输入的命令和服务器地址传递给ASyncTask,然后ASyncTask将打开与服务器的连接并发送命令。但是,要发送新命令,必须关闭并再次打开连接,并再次调用ASyncTask。
我不需要这个:连接应该始终保持打开状态。
这是我的代码(重要部分):
获取输入并在单击按钮时将其发送到ASyncTask:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final EditText inputText = (EditText) findViewById(R.id.editText2);
final Button sendButton = (Button) findViewById(R.id.button);
final TextView text = (TextView) findViewById(R.id.textView3);
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String outputText = inputText.getText().toString().concat("\n");
text.append(outputText);
ConnectTask task = new ConnectTask();
task.execute("192.168.1.3:1322", inputText.getText().toString());
}
});
这是我的ASyncTask子类:
private class ConnectTask extends AsyncTask<String, Void, Void>{
@Override
protected Void doInBackground(String... strings){
String[] spl = strings[0].split(":");
String address = spl[0];
int port = Integer.parseInt(spl[1]);
SocketAddress sockaddr = new InetSocketAddress(address, port);
Socket socket = new Socket();
try{
socket.connect(sockaddr, 5000);
} catch (IOException e){
e.printStackTrace();
}
OutputStream os = null;
try {
os = socket.getOutputStream();
} catch (IOException e) {
e.printStackTrace();
}
OutputStreamWriter osw = new OutputStreamWriter(os);
BufferedWriter bw = new BufferedWriter(osw);
try {
bw.write(strings[1]);
} catch (IOException e) {
e.printStackTrace();
}
try {
bw.flush();
} catch (IOException e) {
e.printStackTrace();
}
try {
socket.close();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
提前感谢您的帮助!
答案 0 :(得分:0)
您真正想要的是Service。服务有点复杂,可能是一个比我真正想要在这里打字更复杂的答案,但这里有一些事情:
服务很好,因为它们在后台运行,可以在自己的线程上,并与活动和其他服务进行交互。您可以在连接上打开连接,在后台通过在活动和服务之间来回发送消息进行通话,并在完成后断开服务。所有这些都相对简单,虽然它确实涉及一些相当复杂的连接。