网优图层工具导入分析数据时System.FormatException: Input string was not in a correct format错误解决方法

System.FormatException: Input string was not in a correct format错误解决方法

        最近在使用一款.net的小工具制作网优图层时候,把原始工参数据导入到工具中之后,一直出现下图所示错误提示,开始一直不知道问题根源所在,报错原因只是单纯显示的是输入字符串不是正确的格式类型。

           

                  网优图层工具导入分析数据时System.FormatException: Input string was not in a correct format错误解决方法_第1张图片

图1 网优图层软件界面

                           

                               网优图层工具导入分析数据时System.FormatException: Input string was not in a correct format错误解决方法_第2张图片

                                                                 图2   报错界面

  解决方法,在尝试和对比过能够正常导入的数据之后,发现Azimuth这个参数,在原始程序中应该是默认为整形数据,此时如果导入的原始excel数据该字段如果有数据浮点型数据(或者单双精度数据,及小数),则运行程序的时候浮点型数据将无法正常转换为整形,此时就会报错。解决方法就是在excel里先通过int函数将数据转换成整形数据,在重选导入到该小工具中,问题解决。

网优图层工具导入分析数据时System.FormatException: Input string was not in a correct format错误解决方法_第3张图片

你可能感兴趣的:(通信,编程)