1

データベースにデータを保存する必要がある Android アプリに取り組んでいます。このデータベースには、iPhone アプリと Web アプリケーションからもアクセスする必要があります。これにはオープン ソースの Mysql を使用したいと思います。

これに関する情報を探していましたが、どうやらデータベースに接続する Web サービスを作成する必要があるようです。おそらくphpですが、phpの経験はありません...

この Web サービスをどのように作成し、どこに保存すればよいですか? データベースはどこで作成および保存しますか? ...

誰でもこの問題について私を助けることができますか?

tnx

4

2 に答える 2

3

SQL サーバーを使用してデスクトップ上のデータを管理し、Visual Studio 上の .Net で Web サービスを作成します。

次に、アプリケーションで Web サービスに接続し、DB からデータを設定/取得します。

.NET で Web サービスを作成する方法に関するリンク (Android での実装は含まれません) : http://srikanthtechnologies.com/blog/dotnet/wsdaljava.aspx

サービスを Android に接続する方法に関するリンク: http://seesharpears.blogspot.in/2010/11/basic-ksoap-android-tutorial.html

http://www.codeproject.com/Articles/304302/Calling-Asp-Net-Webservice-ASMX-From-an-Android-Ap

http://adrianandroid.blogspot.in/2012/05/access-c-net-web-service-in.html

于 2012-07-12T10:42:44.423 に答える
1

localhost サーバー (WAMP または XAMP サーバー) に接続するカスタム クラス

CustomHttpClient.java

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URI;
import java.util.ArrayList;
import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.conn.params.ConnManagerParams;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;

public class CustomHttpClient {
    /** The time it takes for our client to timeout */
    public static final int HTTP_TIMEOUT = 30 * 1000; // milliseconds

    /** Single instance of our HttpClient */
    private static HttpClient mHttpClient;

    /*
     * Get our single instance of our HttpClient object.
     * 
     * @return an HttpClient object with connection parameters set
     */
    private static HttpClient getHttpClient() {
        if (mHttpClient == null) {
            mHttpClient = new DefaultHttpClient();
            final HttpParams params = mHttpClient.getParams();
            HttpConnectionParams.setConnectionTimeout(params, HTTP_TIMEOUT);
            HttpConnectionParams.setSoTimeout(params, HTTP_TIMEOUT);
            ConnManagerParams.setTimeout(params, HTTP_TIMEOUT);

        }
        return mHttpClient;
    }

    /*
     * Performs an HTTP Post request to the specified url with the specified
     * parameters.
     * 
     * @param url The web address to post the request to
     * 
     * @param postParameters The parameters to send via the request
     * 
     * @return The result of the request
     * 
     * @throws Exception
     */ 
    public static String executeHttpPost(String url,
    ArrayList<NameValuePair> postParameters) throws Exception {

        BufferedReader in = null;
        try 
        { 
            HttpClient client = getHttpClient();
            HttpPost request = new HttpPost("http://192.168.1.38/" +url (pathoffilenameyouarecalling));
            UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(postParameters);
            request.setEntity(formEntity);
            HttpResponse response = client.execute(request);
            in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

            StringBuffer sb = new StringBuffer("");
            String line = "";
            String NL = System.getProperty("line.separator");
            while ((line = in.readLine()) != null) 
            {
                sb.append(line + NL);
            }

            in.close();

            String result = sb.toString();
            return result;
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    /**
     * Performs an HTTP GET request to the specified url.
     * 
     * @param url
     *            The web address to post the request to
     * @return The result of the request
     * @throws Exception
     */
    public static String executeHttpGet(String url) throws Exception {
        BufferedReader in = null;
        try {
            HttpClient client = getHttpClient();
            HttpGet request = new HttpGet();
            request.setURI(new URI(url));
            HttpResponse response = client.execute(request);
            in = new BufferedReader(new InputStreamReader(response.getEntity()
                    .getContent()));

            StringBuffer sb = new StringBuffer("");
            String line = "";
            String NL = System.getProperty("line.separator");
            while ((line = in.readLine()) != null) {
                sb.append(line + NL);
            }
            in.close();

            String result = sb.toString();
            return result;
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

これを呼び出すクラスは、このように実装されます。

ArrayList<NameValuePair> postParameter = new ArrayList<NameValuePair>();
postParameter.add(new BasicNameValuePair("parametertobesent",value));
respons = CustomHttpClient.executeHttpPost("urlofservice",postParameter);

php ファイルは、XAMP サーバーの htdocs に存在する必要があります。

于 2012-07-12T10:53:58.277 に答える