0

我在使用FileStream从 Sql 服务器数据库中检索和使用音频二进制文件时遇到问题。我试过MemoryStream但没有工作。这是我使用 Windows 窗体将音频二进制文件插入数据库的代码。

        try
        {
            SqlCommand cmd = null;
            SqlParameter param = null;

            cmd = new SqlCommand("INSERT INTO Audio(audioBinary) VALUES(@BLOBPARAM)", conn);

            FileStream fs = null;
            fs = new FileStream("..\\..\\audio\\a3.mp3", FileMode.Open, FileAccess.Read);
            Byte[] blob = new Byte[fs.Length];
            fs.Read(blob, 0, blob.Length);
            fs.Close();

            param = new SqlParameter("@BLOBPARAM", SqlDbType.VarBinary, blob.Length, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, blob);
            cmd.Parameters.Add(param);
            conn.Open();
            cmd.ExecuteNonQuery();
            conn.Close();

            MessageBox.Show("Successful");
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message);
        }

上面的代码工作得很好,问题出现在检索和使用 Windows Phone 7 应用程序中的数据时。此外,数据是从 Web 服务中检索的。这是我检索二进制数据的代码。

假设 me1 是一个 MediaElement,二进制数据存储在 testImage 中。

        ArrayOfBase64Binary testImage = new ArrayOfBase64Binary();
        byte[] audioArr = new byte[1];
        FileStream fs = null;

        audioArr = testImage[0];
        text.Text = audioArr[0].ToString();

        fs.Write(audioArr, 0, audioArr.Length);

        me1.SetSource(fs);
        me1.Play();

我尝试在 TextBlock 中显示二进制数据,它确实返回了一个整数,但是在尝试将其写入流时,发生了错误:

test.dll 中发生了“System.NullReferenceException”类型的未处理异常

4

1 回答 1

0
FileStream fs = null;

....

fs.Write(audioArr, 0, audioArr.Length);

如果您尝试使用尚未分配的 FileStream 对象,您将收到 NullReferenceException。在尝试写入之前创建一个新的 FileStream 对象。

于 2013-07-27T09:07:21.507 回答