我希望通过调用服务器上 Web 服务的 URL 链接将用户数据插入数据库:例如:这是链接:
http://mydomain.com/AndroidWebService.asmx/nInsertInfo?id=12&lat=23.2222&log=12322
所以我想在隐藏模式下调用这个 url。
我希望通过调用服务器上 Web 服务的 URL 链接将用户数据插入数据库:例如:这是链接:
http://mydomain.com/AndroidWebService.asmx/nInsertInfo?id=12&lat=23.2222&log=12322
所以我想在隐藏模式下调用这个 url。
感谢大家提供宝贵的解决方案。
我通过创建 WebView 做到了
WebView myWebView = (WebView) findViewById(R.id.view1);
myWebView.loadUrl(urll);
然后我可以根据需要管理我的 WebView:隐藏它、对齐为错误或结果返回。
也许这个例子会帮助你:
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) {
}
}
}
您应该在 AsyncTask 中调用 URL。例如:从 AsyncTask 类返回数据
你可以搜索 :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);
你必须使用线程从服务器获取数据并插入到 DB 或在 android 中你可以使用 AsyncTask。