我有以下代码,输出数字“40”:
Hashtable ht = new Hashtable();
ht.Add("numRooms", pageData.Property["romtotalt"].ToString());
string str = ht["numRooms"].ToString();
lblMigrate.Text = i.ToString();
然后我尝试将字符串转换为 int,但出现异常/错误:
Hashtable ht = new Hashtable();
ht.Add("numRooms", pageData.Property["romtotalt"].ToString());
string str = ht["numRooms"].ToString();
int i = Convert.ToInt32(str); // <-- This is where it fails I t hink. But why??
lblMigrate.Text = i.ToString();
这是我收到的错误消息:
Server Error in '/' Application.
Input string was not in a correct format.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.FormatException: Input string was not in a correct format.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[FormatException: Input string was not in a correct format.]
System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +7469351
System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +119
development.templates.HotellGuide.btnMigrateHotels_Click(Object sender, EventArgs e) +956
System.Web.UI.WebControls.Button.OnClick(EventArgs e) +111
System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +110
System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +10
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +13
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +36
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1565
Version Information: Microsoft .NET Framework Version:2.0.50727.3082; ASP.NET Version:2.0.50727.3082
我不明白出了什么问题。我之前曾多次将 string 转换为 int,但从来没有出现过这个问题。
请帮忙:)
更新
我找到了解决办法。我不知道为什么这有效......但它有效......
我将转换放入 Try Catch 中,现在它可以工作了。找出其中一个:op
int numRooms = 0;
int numAllergyRooms = 0;
try
{
numRooms = Convert.ToInt32(newHotel["numRooms"].ToString().Trim());
numAllergyRooms = Convert.ToInt32(newHotel["numAllergyRooms"].ToString().Trim());
}
catch (Exception ex)
{
Console.WriteLine("{0} Exception caught.", ex);
}
我认为“输入字符串的格式不正确”这一行解释了这一切。正在排队
int i = Convert.ToInt32(str);
str 可能包含字母字符。调试的时候看一下,里面有什么?
我有同样的问题,但只尝试 catch 方法解决了我的问题
try
{
decimal dPrice=Convert.ToDecimal(sPrice);
decimal dFreight = Convert.ToDecimal(sFreight);
decimal dLocalship = Convert.ToDecimal(sLocalship);
decimal dTarrif = Convert.ToDecimal(sTarrif);
decimal dBenefit = Convert.ToDecimal(sBenefit);
decimal dTax = Convert.ToDecimal(sTax);
decimal dVat = Convert.ToDecimal(sVat);
decimal dConv = Convert.ToDecimal(sConv);
decimal factors=(dTarrif+dBenefit+dTax+dVat)/100+1;
decimal dTotal=(dPrice+dFreight)*dConv;
dTotal=dTotal*factors;
string st = Convert.ToString(dTotal);
e.Row.Cells[iCell].Text = "price is: " + st + " Rials";
}
catch(Exception ex)
{
Console.WriteLine("{0} Exception caught.", ex);
}
您应该将 Trim() 添加到您认为失败的代码行中。这可能与空间过多有关。
int i = Convert.ToInt32(str.Trim());
甚至可能检查str是否为string.Empty,这也会导致Convert.ToInt32崩溃。
if (string.IsNullOrEmpty(str)) {
str = "0";
}
代码没问题,但是如果str可能有空格,那么你应该在转换之前删除它们:
int i = Convert.ToInt32(str.Replace(" " ,"")); // <-- This is where it fails I t hink. But why??
您正在尝试将 Null 或在本例中的“”(在
.ToString()
之后)转换为 int。
尝试为空值插入可接受的占位符,例如下面代码中所示的 -1。
Convert.ToInt32(newHotel["numAllergyRooms"].ToString().Trim() == "" ? "-1" : newHotel["numAllergyRooms"].ToString().Trim());
原因也可能是注册表问题。请参阅https://support.microsoft.com/en-us/help/942460/system-formatexception-occurrs-when-attempting-to-convert-a-numeric-str
他们解释说,如果值 HKEY_CURRENT_USER\Control Panel\International\sPositiveSign 包含错误的内容,正确的数字字符串可能仍然无法转换。在我们所在的地区,此键的值应该为空(没有空格,只是空)。
可能这不是你的问题,但我在这里添加它是为了那些可能正是因为这个原因而导致问题的人......
我发现错误是由于数字中有逗号引起的,所以你不能将“1,000”转换为INT,但“1000”是可以接受的。