Excel.Interop的Worksheet.UsedRange属性中可能存在错误?

时间:2009-08-18 17:09:33

标签: c# excel

请注意以下代码。基本上,这是一个被调用的函数,用于识别工作表的使用范围,循环遍历该范围,以及哈希社会安全号。

这是问题所在。如果我创建电子表格并填充一个单元格,则该函数不会散列该单元格。但是,如果我填充不止一个,它就可以了。

这可能是UsedRange属性中的错误吗?或者我错过了什么?

非常感谢。

木质

try
{
    foreach (Excel.Worksheet ws in _excelWorksheet)
    {
        // Grab the range of numbers that populates the XLS.
        Excel.Range range = ws.UsedRange;
        // In the following cases, Value2 returns different types:
        //
        // 1. The range variable points to a single cell:
        // Value2 returns a object
        //
        // 2. The range variable points to many cells:
        // Value2 returns object[,]

        object[,] values = (object[,])range.Value2;

        for (int row = 1; row <= values.GetUpperBound(0); row++)
            for (int col = 1; col <= values.GetUpperBound(1); col++)
            {
                // Convert values to strings.
                string value = Convert.ToString(values[row, col]);

                // Mask the value that we retrieved and store it in a variable.
                switch (_mdOptions.cbobxEncryption.Text)
                {
                    case "MD5":
                    {
                        replaceSSN = SHA2Hash.ComputeHash(value, "MD5", null);
                        break;
                    }
                    case "SHA256":
                    {
                        replaceSSN = SHA2Hash.ComputeHash(value, "SHA256", null);
                        break;
                    }
                    default:
                    {
                        replaceSSN = SHA2Hash.ComputeHash(value, "SHA256", null);
                        break;
                    }
                }    

                // Match expressions to sensitive data and replace with the hash
                // value.
                if (Regex.IsMatch(value, @"\b[0-9]{3}-[0-9]{2}-[0-9]{4}\b"))
                {
                    range.Cells.set_Item(row, col, replaceSSN);
                }
                else if (Regex.IsMatch(value, @"\b[0-9]{3}[0-9]{2}[0-9]{4}\b"))
                {
                    range.Cells.set_Item(row, col, replaceSSN);
                }
            }
        }
    }
    catch (Exception)
    {
        // This is here because of a non-fatal error that we're getting with
        // Windows 7 during the hashing phase. Everything still works,
        // it's just that this error keeps popping up.

        // REVIEW FOR WINDOWS 7 COMPATABILITY
        ;

        //MessageBox.Show("There was a major error. Please restart the program.");
        //MessageBox.Show(@"Exception: " + ee);
    }


    // Pull the hashed password from the registry and add it to the SaveAs
    //string saveAsPassword = Convert.ToString(Registry.GetValue(@"HKEY_CURRENT_USER\Software\Mask Data", "Password", ""));
    /*
    _excelWorkbook.SaveAs("Results.xls",
    Type.Missing, Type.Missing, Type.Missing,
    Type.Missing, false,
    Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange,
    Type.Missing, true, Type.Missing,
    Type.Missing, Type.Missing); 
     */
     // Report success.    
    MessageBox.Show("File masked successfully.", 
        "Mask Data", MessageBoxButtons.OK, MessageBoxIcon.Information,
        MessageBoxDefaultButton.Button1, 
        MessageBoxOptions.DefaultDesktopOnly);
    // Shutdown instance of Excel.
    //_excelApp.Quit();

    // Release memory.
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Marshal.ReleaseComObject(_excelWorkbook);
    Marshal.ReleaseComObject(_excelApp);         
}

2 个答案:

答案 0 :(得分:4)

如果只是因为double只有1维,则无法将double转换为2维对象数组。抱歉,如果我告诉你一些你已经知道的事情,但术语“双重”意味着双精度,并且与二维数组无关(由object [,]定义)。

您可以简单地为此案例添加一个检查,以便前几行看起来像:

XLS.Excel.Range range = ws.UsedRange;
object[,] values;
if (range.Value2.GetType().IsArray)
{
    values = (object[,])range.Value2;
}
else
{
    values = new object[2,2];
    values[1,1] = range.Value2;
}

我在这台机器上没有VS,因此代码未经测试但应该非常接近

修改 敲了一个快速测试应用程序,我可以看到UsedRange.Value2正在做什么 - 它返回一个包含所有工作表值的数组,这就是为什么如果有一个以上的单元格它是一个数组但是对于一个单元格它只会返回值(可以是任何类型)。上面的代码可以工作但是有点黑客。获取行数和列数的正确方法是使用:

range.Rows.Count

range.Columns.Count

如果你改变你的for循环使用这两个值而不是数组边界它将解决你的问题,并将适用于单行和多行

答案 1 :(得分:2)

如代码中的注释所述,Value2属性为单个单元格或对象[,]返回单个文本/数字/逻辑/错误值,用于多个单元格。