windows phone 8.1教务在线客户端(后续)
经过了一番折腾,这个wp教务在线算是告一段落了,其实原理很简单,就是post方式访问登陆页面返回cookie,然后带着这个cookie用get方式继续访问你想要访问并取回内容的页面,而且httpclient会默认保存cookie的,这个关键我一开始就没搞清,以至于走了弯路,,
ok,这个项目我只是登陆并且获取了我想要的html内容,至于解析html,可以用正则表达式,等以后有时间再研究吧
下面是源码:
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using Windows.Web.Http;
namespace App
{
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent(); this.NavigationCacheMode = NavigationCacheMode.Required;
} protected override void OnNavigatedTo(NavigationEventArgs e)
{
}
//点击登陆按钮
private async void button_Click(object sender, RoutedEventArgs e)
{
//这个uri是抓包获得的,就是那个带有post请求的uri
var uri = "xxx";
var values = new List<KeyValuePair<string, string>>();
//这个键值对也是抓包获得的,就是你的用户名和密码填上
values.Add(new KeyValuePair<string, string>("自己的用户名", "xxxxx"));
values.Add(new KeyValuePair<string, string>("自己的密码", "xxxxxx"));
string response = await App.httpClientHelper.Post(new Uri(uri), values);
//string responsetext = await response.Content.ReadAsStringAsync();
//这个uri是你想获得返回内容的uri
var _uri = "你想访问的uri";
string _response = await App.httpClientHelper.Get(new Uri(_uri));
Frame.Navigate(typeof(BlankPage1), _response);
}
}
}
<Page
x:Class="App.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid>
<Button x:Name="button" Content="Login" Click="button_Click" HorizontalAlignment="Left" Margin="232,292,0,0" VerticalAlignment="Top"/> <TextBox x:Name="textBox1" HorizontalAlignment="Left" Margin="201,138,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="166"/>
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="43,138,0,0" TextWrapping="Wrap" Text="Name" FontSize="30" VerticalAlignment="Top" Height="39" Width="116"/>
<TextBox x:Name="passwordBox" HorizontalAlignment="Left" Margin="201,218,0,0" VerticalAlignment="Top" Width="166"/>
<TextBlock x:Name="textBlock1" HorizontalAlignment="Left" Margin="43,218,0,0" TextWrapping="Wrap" Text="Password" FontSize="22" VerticalAlignment="Top" Height="39" Width="93"/> </Grid>
</Page>
这个是个空页面,里面放着所返回的html源码:
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation; namespace App
{
public sealed partial class BlankPage1 : Page
{
public BlankPage1()
{
this.InitializeComponent();
} protected override void OnNavigatedTo(NavigationEventArgs e)
{
textBox.Text = e.Parameter.ToString();
}
}
}
<Page
x:Class="App.BlankPage1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid>
<TextBox x:Name="textBox" HorizontalAlignment="Left" Margin="55,69,0,0" TextWrapping="Wrap" VerticalAlignment="Top" RenderTransformOrigin="-3.716,-0.387" Height="217" Width="301" BorderThickness="0.1"/> </Grid>
</Page>
这是自定义的httpClienthelper类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.Web.Http; namespace App
{
public class HttpClientHelper
{
private HttpClient httpClient; public HttpClientHelper()
{
httpClient = new HttpClient(); } public async Task<string> Post(Uri uri, IList<KeyValuePair<string, string>> postcontent)
{
string responseText = string.Empty;
HttpResponseMessage response = await httpClient.PostAsync(uri, new HttpFormUrlEncodedContent(postcontent));
responseText = await response.Content.ReadAsStringAsync();
return responseText;
} public async Task<string> Get(Uri uri)
{
string responseText = string.Empty;
HttpResponseMessage response = await httpClient.GetAsync(uri);
responseText = await response.Content.ReadAsStringAsync();
return responseText;
}
}
}
一定别忘了在app.xaml.cs里实例化这个httpClientHelper实例:
public static HttpClientHelper httpClientHelper = new HttpClientHelper();
好了,这只是基本的原理展示,这是我学习windows phone的一个小尝试。
windows phone 8.1教务在线客户端(后续)的更多相关文章
- Windows phone8.1教务在线客户端
		本人是个大二学生,由于学校的教务在线一直没出windows phone的教务在线,而且本身也对wp开发感兴趣,所以就尝试着开发一下 由于没有系统的学习,只能在摸索中前进,这背后的原理很简单,可不容易实 ... 
- 关于windows phone教务在线客户端
		本人是个大二学生,由于学校的教务在线一直没出windows phone的教务在线,而且本身也对wp开发感兴趣,所以就尝试着开发一下 由于没有系统的学习,只能在摸索中前进,这背后的原理很简单,可不容易实 ... 
- Windows苹果安卓手机远程桌面客户端推荐
		适用于:Windows 10.Windows 8.1.Windows Server 2012 R2.Windows Server 2016 最近公司电脑从Windows7升级到了Windows10,然 ... 
- 常量,字段,构造方法  调试 ms 源代码  一个C#二维码图片识别的Demo  近期ASP.NET问题汇总及对应的解决办法  c# chart控件柱状图,改变柱子宽度  使用C#创建Windows服务  C#服务端判断客户端socket是否已断开的方法  线程 线程池 Task  .NET 单元测试的利剑——模拟框架Moq
		常量,字段,构造方法 常量 1.什么是常量  常量是值从不变化的符号,在编译之前值就必须确定.编译后,常量值会保存到程序集元数据中.所以,常量必须是编译器识别的基元类型的常量,如:Boolean ... 
- Windows下配置Git服务器和客户端 超全
		为了配合Redmine使用,特地用Git来做版本控制. Git Candy© 是一个基于ASP.NET MVC的Git分布式版本控制平台,Git Candy的目标是轻松干掉Bonobo,逐渐追赶Git ... 
- Windows下编译打包Spice PC客户端
		目录 1 环境搭建 2 编译客户端 3 打包客户端 1 环境搭建 1.1 准备工作 安装启动: 安装替换图标工具: Resource Hacker 安装exe制作工具: NSIS(提取码:3dfp ... 
- c++ 网络编程(一)TCP/UDP  windows/linux 下入门级socket通信 客户端与服务端交互代码
		原文作者:aircraft 原文地址:https://www.cnblogs.com/DOMLX/p/9601511.html c++ 网络编程(一)TCP/UDP 入门级客户端与服务端交互代码 网 ... 
- 正方教务系统客户端 error loading midas.dll.
		在windows xp/7/10上安装了客户端,安装到注册字体一步,没有响应,强行结束.启动客户端,登录,出现 error loading midas.dll. 32位:先将 midas.dll 放 ... 
- windows上搭建NFS服务器及客户端 挂载
		在Windows相关系统上搭建NFS服务及客户端挂载 有两种方式: 第一种: (Windows Server2008R2等类似企业版这样的版本的Server服务上有自带的NFS服务进行搭建) (特别 ... 
随机推荐
- 动态设置  button的  name 的话   闪动的问题 解决
			其实 只要把 button设置成 custom 的 type 的话 就会 解决这个问题 
- ASP.NET ZERO 学习 HangFire的使用
			hangfire 是一个分布式后台执行服务. 官网:http://hangfire.io/ 1.启用 hangfire 2.Hangfire可以提供一个面板页面,实时显示所有后台作业的状态,你可以按它 ... 
- javascript按中文首字母排序
			resultValue=[ '武汉' , '北京' , '上海' , '天津' ] ; resultValue= resultValue.sort( function compareFunction( ... 
- C#实现简单的委托异步调用
			delegate void textAsy(); static void Main(string[] args) { textAsy t = texts; AsyncCallback callBack ... 
- Python模块:itertools
			itertools模块:循环器 一,无穷循环器:count,cycle,repeat (1)count(5,3) #从5开始的整数循环器,每次增加3,即:5,8,11,14,17... from it ... 
- NLS_LANG
			NLS_LANG是一个环境变量,用于定义语言,地域以及字符集属性.对于非英语的字符集,NLS_LANG的设置就非常重要. NLS:‘National Language Support (NLS)’ 当 ... 
- 【转】 71道经典Android面试题和答案,重要知识点都包含了
			,,面试题1. 下列哪些语句关于内存回收的说明是正确的? (b ) A. 程序员必须创建一个线程来释放内存 B.内存回收程序负责释放无用内存 C.内存回收程序允许程序员直接释放内存 ... 
- using 语句中使用的类型必须可隐式转换为“System.IDisposable
			在使用 EF 出现 using 语句中使用的类型必须可隐式转换为“System.IDisposable 今天写在这里分享给大家 出现这样的问题,是因为没有引用 EntityFramework 这个程 ... 
- Linux系统目录结构
			Linux系统目录结构图 目录:/ 是Linux的根目录 每个文件和目录从根目录开始,只有root用户具有该目录下的写权限: /root是root用户的主目录,这与 / 目录不一样: 目录:/bin ... 
- Win10专业版激活方法可查版本
			Win10专业版激活步骤 ------安装Win10专业版,请win+R,键入winver回车,可查看版本------ 1.点击左下角windows按钮,找到设置并打开,依次点击"更新和安全 ... 
