gpt4 book ai didi

android - 如何制作一个可以与我的 Android 手机通信的网络服务器?

转载 作者:行者123 更新时间:2023-11-29 00:35:47 27 4
gpt4 key购买 nike

package com.yarin.android.Examples_08_01;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

//以Get方式上传参数
public class Activity03 extends Activity {
private final String DEBUG_TAG = "Activity03";

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.http);
TextView mTextView = (TextView) this.findViewById(R.id.TextView_HTTP);
// http address "?par=abcdefg" is the argument to be posted
String httpUrl = "http://192.168.0.100:8080/httpGet.jsp?par=test";
// 获得的数据
String resultData = "";
URL url = null;
try {
// 构造一个URL对象
url = new URL(httpUrl);
} catch (MalformedURLException e) {
Log.e(DEBUG_TAG, "MalformedURLException");
}
if (url != null) {
try {
// 使用HttpURLConnection打开连接
HttpURLConnection urlConn = (HttpURLConnection) url
.openConnection();
// 得到读取的内容(流)
InputStreamReader in = new InputStreamReader(
urlConn.getInputStream());
// 为输出创建BufferedReader
BufferedReader buffer = new BufferedReader(in);
String inputLine = null;
// 使用循环来读取获得的数据
while (((inputLine = buffer.readLine()) != null)) {
// 我们在每一行后面加上一个"\n"来换行
resultData += inputLine + "\n";
}
// 关闭InputStreamReader
in.close();
// 关闭http连接
urlConn.disconnect();
// 设置显示取得的内容
if (resultData != null) {
mTextView.setText(resultData);
} else {
mTextView.setText("读取的内容为NULL");
}
} catch (IOException e) {
Log.e(DEBUG_TAG, "IOException");
}
} else {
Log.e(DEBUG_TAG, "Url NULL");
}
Button button_Back = (Button) findViewById(R.id.Button_Back);
/* 监听button的事件信息 */
button_Back.setOnClickListener(new Button.OnClickListener() {
public void onClick(View v) {
/* 新建一个Intent对象 */
Intent intent = new Intent();
/* 指定intent要启动的类 */
intent.setClass(Activity03.this, Activity01.class);
/* 启动一个新的Activity */
startActivity(intent);
/* 关闭当前的Activity */
Activity03.this.finish();
}
});
}
}

对于上面的代码,我理解它是如何工作的。它作为应用程序运行,需要与 Web 服务器通信。

但我不知道如何制作一个可以作为“http://192.168.0.100:8080/httpGet.jsp”容器的网络服务器。

我做了一些调查。

(1) 在Android 手机上,i-jettykwsatieews 可能会有帮助,但我没有让它们适用于我的手机目的。

(2) 在PC 上,tomcat 是一个很好的jsp 容器。但它提供了localhost:8080地址,这意味着只有在PC上运行的应用程序才能与之通信。我对吗?如何让我的 Android 手机连接 tomcat(在我的电脑上运行)?

(3) 还有其他想法吗?

谢谢!

最佳答案

要创建一个可以与您的 Android 应用程序通信的服务器,您可以使用 SOAP 服务或 JSON。这两个是最常用的(JSON 更快,在我看来更好用,但这可以讨论)。

查看一些有关如何为您的 Android 应用程序创建服务器端应用程序的教程。如果您是新手设置服务器,这不是一项容易的任务。

关于android - 如何制作一个可以与我的 Android 手机通信的网络服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12784977/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com