我试图检查Access 2010是否安装了C#,我尝试使用scalaj-http。
他使用subString
代替Substring
代替indexOf
代替IndexOf
。
所以在我的代码中我使用Substring
和IndexOf
完成了它,但是当我运行它时会给FormatException
,这是我的代码:
RegistryKey rootKey = Registry.ClassesRoot.OpenSubKey(@"Access.Application\CurVer" , false);
if (rootKey == null)
{
MessageBox.Show("Access 2010 not installed on this machine");
}
String value = rootKey.GetValue("").ToString();
int verNum = 0;
try
{
verNum = int.Parse(value.Substring(value.IndexOf("Access.Application.")));
} catch (FormatException fe)
{
MessageBox.Show(fe.ToString());
}
if (value.StartsWith("Access.Application.") && verNum >= 12)
{
MessageBox.Show("Access 2010 already installed on this machine");
}
答案 0 :(得分:1)
地球上没有任何办法可以解决问题(只是说)
您显然已从此处获取此代码或某些衍生Check if MS Access 2010 is installed ...而且其可怕的错误
首先
报告指定的第一次出现的从零开始的索引 在这个例子中的字符串
表示如果找到"Access.Application."
其次
从此实例中检索子字符串。子串从a开始 指定的字符位置并继续到字符串的末尾。
这意味着,给定0将返回"Access.Application."
,而不是int
最后
如果不是int
我不确定找到访问版本号的正确方法或如何检测是否安装了访问权限。但是,如果版本号确实位于"Access.Application."
之后,您希望使用String.LastIndexOf Method传入.
至少使用int.TryParse来确保它不会抛出异常
示例强>
var somekey = "Access.Application.2099";
var lastIndex = somekey.LastIndexOf(".");
if (lastIndex > 0)
Console.WriteLine("We have a chance");
var substr = somekey.Substring(lastIndex + 1);
Console.WriteLine(substr);
int verNum = 0;
if (int.TryParse(substr, out verNum))
{
Console.WriteLine("found a version maybe : " + verNum);
}
else
{
Console.WriteLine("No cigar");
}