我正在尝试将一个字符串从 Android 应用程序(客户端)发送到 Java 服务器,该服务器等待来自许多 android 客户端的此类消息并将它们存储在一个文件中。客户端编码很好,我在教程和博客的帮助下写了,这里是:
HttpURLConnection conn = null;
try {
Log.e("URL", "> " + url);
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setFixedLengthStreamingMode(bytes.length);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded;charset=UTF-8");
// post the request
OutputStream out = conn.getOutputStream();
out.write(bytes);
out.close();
// handle the response
int status = conn.getResponseCode();
if (status != 200) {
throw new IOException("Post failed with error code " + status);
}
} finally {
if (conn != null) {
conn.disconnect();
}
我想要的是一个Java服务器,它可以处理来自不同Android应用程序的这些消息并将消息字符串存储到一个文本文件中。我只想知道如何处理这些传入的消息并将它们放入一个空字符串中。
到目前为止,我已经使用以下服务器端编码进行了一些小试验:
int port = 8080;
ServerSocket ss = new ServerSocket(port);
Socket s = ss.accept();
while(true) {
if (s == null) {
/* nothing to do */
try {
wait();
} catch (InterruptedException e) {
continue;
}
}
try {
InputStream is = new BufferedInputStream(s.getInputStream());
PrintStream ps = new PrintStream(s.getOutputStream());
ANDROID_DEVICE = ps.flush();
}catch(IOException e){}
}