我正在开发一个Windows手机应用程序,我将其定位到7.1,因此它可以在wp7和wp8设备上运行。 如果应用程序在wp8设备上运行,我想运行此代码:
public async void DefaultLaunch2a()
{
// Path to the file in the app package to launch
var file1 = await ApplicationData
.Current
.LocalFolder
.GetFileAsync("webcam-file.jpg");
if (file1 != null)
{
// Launch the retrieved file
var success = await Windows.System.Launcher.LaunchFileAsync(file1);
if (success)
{
// File launched/y
}
else
{
// File launched/n
}
}
else
{
// Could not find file
}
}
启动器文件类型(打开图像)。我试图通过反思来做,但我有一些问题。
String name = "file1.jpg";
Type taskDataType2 = Type.GetType("Windows.Storage.StorageFolder, Windows, "
+ "Version=255.255.255.255, Culture=neutral, "
+ "PublicKeyToken=null, "
+ "ContentType=WindowsRuntime");
MethodInfo showmethod2 = taskDataType2.GetMethod("GetFileAsync",
new Type[]
{
typeof(System.String)
});
showmethod2.Invoke(taskDataType2,
new System.String[] { name });
此代码抛出异常TargetException: Object does not match target type
- 当我调用方法时。
有什么问题?是否有人已经尝试使用反射编写上面的代码?
目标是从设备商店中读取图像文件,然后启动Windows.System.Launcher.LaunchFileAsync
。
如果代码在wp8设备上运行,我想做一些像mangopollo。
答案 0 :(得分:1)
问题在于,你应该在taskDataType2
的实例上调用方法,而不是在表示类型的对象上。 taskDataType2
不是Windows.Storage.StorageFolder
的实例,它是Type
类型的实例。尝试这样的事情:
Type taskDataType2
= Type.GetType("Windows.Storage.StorageFolder, Windows,"
+ " Version=255.255.255.255, Culture=neutral,"
+ " PublicKeyToken=null, ContentType=WindowsRuntime");
MethodInfo showmethod2 = taskDataType2
.GetMethod("GetFileAsync", new[] { typeof(string) });
object taskDataInstance = taskDataType2
.GetConstructor(Type.EmptyTypes)
.Invoke(null);
String name = "file1.jpg";
showmethod2.Invoke(taskDataInstance, new[] { name });
这简化为可以使用无参数构造函数实例化类型的情况。否则,您应使用适当的参数而不是Type.EmptyTypes
来呼叫GetConstructor
。
请注意,这不是recommended方式来检索StorageFolder
实例:
通常,您可以通过异步方法和/或函数调用来访问
StorageFolder
个对象。例如,静态方法GetFolderFromPathAsync
返回表示指定文件夹的StorageFolder
。