1

私はC++開発者であり、最近C#WPFアプリの開発を開始しました。私はMVVMをフォローしています。さて、私はコンボボックスとボタンに取り組んでいます。基本的に、binfileをロードしてコンボボックスに保存するための参照ボタンがあり、[TEST]ボタンをクリックすると、ファイルに存在するデータを読み取り、そのサイズを取得する必要があります。

XAMLは次のとおりです。

<ComboBox Name="ClockYHZBox" >              
          <ComboBoxItem Content="{Binding FirmwarePath}" />
</ComboBox>
<Button Content="Browse" Command="{Binding WriteFilePathCommand}" Name="RunPCMPDM0" />

<Button Content="Test" Command="{Binding WriteDataTestCommand}" />

ViewModelクラス:

private string _selectedFirmware;
    public string FirmwarePath
    {
        get; set;
    }

// This method gets called when BROWSE Button is pressed
private void ExecuteWriteFileDialog()
    {
        var dialog = new OpenFileDialog { InitialDirectory = _defaultPath };
        dialog.DefaultExt = ".bin";
        dialog.Filter = "BIN Files (*.bin)|*.bin";
        dialog.ShowDialog();
        FirmwarePath = dialog.FileName; // Firmware path has the path           
    }       

// Method gets called when TEST Button is Pressed
public void mSleepTestCommandExecuted()
    {
        int cmd = (22 << 8) | 0x06; 
        System.IO.StreamReader sr = new System.IO.StreamReader(FirmwarePath);

        string textdata = sr.ReadToEnd();
        int fileSize = (int)new System.IO.FileInfo(FirmwarePath).Length;

        Byte[] buffer = new Byte[256];            

        // This gives me the size and data, But i am failing to do
        // further operation of storing value in BUFFER
        // and MEMCPY which is shown below in C++ Code          
    }

これは、C++アプリケーションで行った方法です。

MemoryBlock binFile;
m_wdbFile->getCurrentFile().loadFileAsData(binFile); //m_wbdFile is a filedialog object
BYTE *buffer = NULL;
int  fileSize = binFile.getSize();
buffer = (BYTE *)calloc(sizeof(BYTE), fileSize + 2);    
memcpy(buffer+2, binFile.getData(), fileSize);

上記のように、ファイルを開き、サイズをに格納しfileSize、メモリのブロックをバッファに割り当てます。どうすればそれを達成できますか?私はあなたの助けをいただければ幸いです:)

4

1 に答える 1

2
byte[] b;
FileStream fileStream=new FileStream(FirmwarePath,FileMode.Open);
using (BinaryReader br = new BinaryReader(fileStream))
{
   b = br.ReadBytes(fileSize);
}
于 2012-11-01T11:54:54.000 に答える