2

我希望通过调用服务器上 Web 服务的 URL 链接将用户数据插入数据库:例如:这是链接:

http://mydomain.com/AndroidWebService.asmx/nInsertInfo?id=12&lat=23.2222&log=12322

所以我想在隐藏模式下调用这个 url。

4

6 回答 6

5

使用 android android AsyncTask 发布数据。当应用程序打开时,它在android后台工作。AsyncTask 允许正确和轻松地使用 UI 线程。此类允许在 UI 线程上执行后台操作并发布结果,而无需操作线程和/或处理程序。

谢谢。

于 2012-12-27T08:46:23.420 回答
4

感谢大家提供宝贵的解决方案。

我通过创建 WebView 做到了

WebView myWebView = (WebView) findViewById(R.id.view1);
myWebView.loadUrl(urll);

然后我可以根据需要管理我的 WebView:隐藏它、对齐为错误或结果返回。

于 2012-12-27T11:24:13.910 回答
2

也许这个例子会帮助你:

public class URLConnectionTask <Result> extends AsyncTask<URL, Void, InputStream> {


        @Override
        protected InputStream doInBackground(URL... params) {
            InputStream is;
            HttpUriRequest request;
            URI uri;
            HttpResponse response;

            if (params.length == 0)
                return null;

            is = null;CredentialsProvider credProvider = new BasicCredentialsProvider();

        if (userName != null && userName.length() > 0 && password != null && password.length() > 0)
            credProvider.setCredentials(new AuthScope(AuthScope.ANY_HOST, AuthScope.ANY_PORT),
                new UsernamePasswordCredentials(userName, password));

        //
        DefaultHttpClient http = new DefaultHttpClient();
        http.setCredentialsProvider(credProvider);
        //

        uri = URI.create(params[0].toString());

        if (isPost)
            request = new HttpPost(uri);
        else
            request = new HttpGet(uri);

        try {           
            response = http.execute(request);
            is = response.getEntity().getContent();

            //Log.d(TAG, "doInBackground() response: "+EntityUtils.toString(response.getEntity()));
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }


       if (processingHandler != null && is != null)
           processingResult = processingHandler.processResponse(is);// processingHandler is an instance which implements ProcessingHandler interface (ex. VizMarket). processResponse() is implemented on this class.

       return is;
    }

    @Override
        protected void onPostExecute (InputStream result) {
            input = result;

            if (result == null)
                return;
                    //instruction for inserting data on db .... 

            try {
                result.close();
            } catch (IOException e) {
            }
        }
    }
于 2012-12-27T09:03:05.930 回答
1

您应该在 AsyncTask 中调用 URL。例如:从 AsyncTask 类返回数据

于 2012-12-27T08:45:45.493 回答
0

你可以搜索 :ClickableSpan 并将你的插入代码放入 OnClick 正文中~ 就像:

String yourTextStr;
    SpannableString sp = new SpannableString(yourTextStr);
    int start;//the start of your url in the text; 
    int end ;//the end of your url in the text; 
    sp.setSpan(new ClickableSpan() {
        @Override
        public void onClick(View widget) {
            //Your Insert Code
        }
    }, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
于 2012-12-27T08:51:31.000 回答
0

你必须使用线程从服务器获取数据并插入到 DB 或在 android 中你可以使用 AsyncTask。

于 2012-12-27T08:51:09.300 回答