分享
 
 
 

桌面端的移动计算(四)

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

Launching an Application

有很多原因使你要从一个桌面程序启动设备上的一个应用程序。在下面情况下,你可以使用这个技术:

· 安装一个新版本的应用程序。简单地拷贝CAB文件到设备上,然后在设备上运行CAB安装程序来提供安装。这项技术被经常用在你想自动发布和安装应用程序更新的情况下。

注意 另一个相似的发法是自动话桌面端的安装过程,使用ActiveSync内置的功能。

· 在安装了新版本应用程序后重起你的移动应用程序。

· 开始一个设备应用程序处理新更新的数据,在更新了文本或者XML文件后。

RAPI示例程序如图4。

Figure 4. The Launch Application tab of the RAPI demo program

OpenNETCF.Desktop.Communication命名空间RAPI类提供CreateProcess方法来启动一个设备文件。你希望启动的设备应用程序作为该方法的第一个参数。你可以传递一个命令行给应用程序,作为第二个参数。

btnLaunchPerform按钮的点击事件演示了CreateProcess方法。

[VC#.NET]

private void btnLaunchPerform_Click(object sender, System.EventArgs e)

{

// Perform the launch.

try

{

if (txtLaunchFile.Text == "")

{

MessageBox.Show("You must provide a file to launch.",

"No File Provided");

}

else

{

myrapi.CreateProcess(txtLaunchFile.Text, txtLaunchCommand.Text);

MessageBox.Show("Your file has been launched.", "Launch Success");

}

}

// Handle any errors that might occur.

catch (Exception ex)

{

MessageBox.Show("The following error occurred while launching the

file -" +

ex.Message, "Launch Error");

}

}

[VB.NET]

Private Sub btnLaunchPerform_Click(ByVal sender As System.Object, ByVal

e As System.EventArgs) Handles btnLaunchPerform.Click

' Perform the launch.

Try

If (txtLaunchFile.Text = "") Then

MessageBox.Show("You must provide a file to launch.", _ "No File Provided");

}

else

"No File Provided");

}

else

{

myrapi.CreateProcess(txtLaunchFile.Text, txtLaunchCommand.Text);

MessageBox.Show("Your file has been launched.", "Launch Success");

}

}

// Handle any errors that might occur.

catch (Exception ex)

{

MessageBox.Show("The following error occurred while launching the

file -" +

ex.Message, "Launch Error");

}

}

[VB.NET]

Private Sub btnLaunchPerform_Click(ByVal sender As System.Object, ByVal

e As System.EventArgs) Handles btnLaunchPerform.Click

' Perform the launch.

Try

If (txtLaunchFile.Text = "") Then

MessageBox.Show("You must provide a file to launch.", _

"No File Provided")

Exit Sub

End If

myrapi.CreateProcess(txtLaunchFile.Text, txtLaunchCommand.Text)

MessageBox.Show("Your file has been launched.", "Launch Success")

' Handle any errors that might occur.

Catch ex As Exception

MessageBox.Show("The following error occurred while launching the file

-" & ex.Message, _

"Launch Error")

End Try

End Sub

接下来我们将进入最后一个RAPI有关的主题:获得系统信息。在下面的部分你将看到,RAPI类提供了一些方法用来得到连接设备的详细信息。

Retrieving System Information得到指定的设备系统信息使你的程序能够在下面几个方面交付内容或改变功能:

· 连接设备上使用的处理器,当应用程序上传一个包含指定处理器的文件的CAB文件到设备上时。

注意 这项技术最常用的环境是当你发布应用程序到早期版本的Pocket PC设备上,例如基于ARM处理器的Windows Mobile设备。

· 运行在连接设备上的操作系统版本,根据处理器类型使用相应文件进行更新。

· 连接设备的电源状态,经常用于在使用者进入区域前,警告他们的设备运行于低电量状态下。

· 连接设备的内存状态,用于检测数据是否可以下载,如果用户下载了未被授权的应用程序或者其他内存相关函数,或者判断你是否有足够的空间安装应用程序的更新。

这部分操作的演示界面见图5。

Figure 5. The Device Information tab of the RAPI demo program

RAPI类提供了四个方法来得到这些信息,GetDeviceSystemInfo (处理器类型), GetDeviceVersion (操作系统版本), GetDeviceSystemPowerStatus (电源状态) 和 GetDeviceMemoryStatus (内存).

BtnInfoRetrieve按钮的点击事件示范了这些方法。

[VC#.NET]

private void btnInfoRetrieve_Click(object sender, System.EventArgs e)

{

string info;

MEMORYSTATUS ms;

SYSTEM_INFO si;

SYSTEM_POWER_STATUS_EX sps;

OSVERSIONINFO vi;

// Retrieve the system information.

myrapi.GetDeviceSystemInfo(out si);

// Retrieve the device OS version number.

myrapi.GetDeviceVersion(out vi);

// Retrieve the device power status.

myrapi.GetDeviceSystemPowerStatus(out sps);

// Retrieve the device memory status.

myrapi.GetDeviceMemoryStatus(out ms);

// Format the retrieved information.

info = "The connected device has an ";

switch (si.wProcessorArchitecture)

{

case ProcessorArchitecture.Intel:

info += "Intel processor.\n";

break;

case ProcessorArchitecture.MIPS:

info += "MIPS processor.\n";

break;

case ProcessorArchitecture.ARM:

info += "ARM processor.\n";

break;

default:

info = "unknown processor type.\n";

break;

}

info += "OS version: " + vi.dwMajorVersion + "." +

vi.dwMinorVersion + "." +

vi.dwBuildNumber + "\n";

if (sps.ACLineStatus == 1)

{

info += "On AC power: YES\n";

}

else

{

info += "On AC power: NO \n";

}

info += "Battery level: " + sps.BatteryLifePercent + "%\n";

info += "Total memory: " + String.Format("{0:###,###,###}",

ms.dwTotalPhys) +

"\n";

// Display the results.

lblInfo.Text = info;

}

[VB.NET]

Private Sub btnInfoRetrieve_Click(ByVal sender As System.Object, ByVal

e As System.EventArgs) Handles btnInfoRetrieve.Click

Dim info As String

Dim ms As New MEMORYSTATUS

Dim si As New SYSTEM_INFO

Dim sps As New SYSTEM_POWER_STATUS_EX

Dim vi As New OSVERSIONINFO

' Retrieve the system information.

myrapi.GetDeviceSystemInfo(si)

' Retrieve the device OS version number.

myrapi.GetDeviceVersion(vi)

' Retrieve the device power status.

myrapi.GetDeviceSystemPowerStatus(sps)

' Retrieve the device memory status.

myrapi.GetDeviceMemoryStatus(ms)

' Format the retrieved information.

info = "The connected device has an "

Select Case si.wProcessorArchitecture

Case ProcessorArchitecture.Intel

info += "Intel processor." & vbCrLf

Case ProcessorArchitecture.MIPS

info += "MIPS processor." & vbCrLf

Case ProcessorArchitecture.ARM

info += "ARM processor." & vbCrLf

Case Else

info = "unknown processor type." & vbCrLf

End Select

info += "OS version: " & vi.dwMajorVersion & "." & vi.dwMinorVersion

& "." & vi.dwBuildNumber & vbCrLf

info += "On AC power: " & IIf(sps.ACLineStatus = 1, "YES", "NO")

& vbCrLf

info += "Battery level: " & sps.BatteryLifePercent & "%" & vbCrLf

info += "Total memory: " & String.Format("{0:###,###,###}",

ms.dwTotalPhys) & vbCrLf

' Display the results.

lblInfo.Text = info

End Sub

到这里我们如果将桌面应用程序加入到你的移动解决方案和关于Remote API的介绍就要告以段落了。我建议你花一些时间来检验OpenNETCF.Desktop.Communication命名空间提供的其他的功能。记住,那才是所有的操作,OpenNETCF命名空间为你的应用程序提供了多种类的操作。

Back on the Road又是一个新的月份了。春天已经来到了每个角落,我要带着我的滑水板和Pocket PC前往阳光充足的Florida。在我的下一篇文章里,我们将检验关于移动开发者更多的操作。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有