0

我为向服务器发送请求的 android 开发了一个应用程序,我在 Android 中的代码如下:

DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("www.something.com");
List<NameValuePair> values = new ArrayList<NameValuePair>();
values.add(new BasicNameValuePair("username", user));
values.add(new BasicNameValuePair("password", password));
values.add(new BasicNameValuePair("login-form-type", "pwd"));
httppost.setEntity(new UrlEncodedFormEntity(values, HTTP.UTF_8));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
List<Cookie> cookies = httpclient.getCookieStore().getCookies();

我已经尝试了一些示例,但似乎即使在 Visual Studio 2012 中的标准 C# 代码在 Windows 应用商店应用程序中也无法正常工作任何人都可以帮助我了解此代码在 Windows 8 应用商店应用程序中的工作方式。

我真的很感激你的帮助。

此致。

4

1 回答 1

0

适用于 Android -> Windows Store 应用程序的资源,包括API 映射索引。这是有关如何使用它的文章

此外,还有一个名为Generation App的程序,可帮助您按照指导学习路径构建您的第一个应用程序。它还使您可以免费获得技术支持和免费设计咨询(Microsoft 员工不符合条件;我本来希望对我的应用程序进行免费设计咨询!),并且偶尔会有提交应用程序的赠品。

于 2013-03-20T02:27:44.250 回答