short[] ssss=new short[gaoDeData.Length];
FileStream fs = new FileStream("E:\123.txt", FileMode.Create);
byte[] temp = new byte[ssss.Length * sizeof(short)]; ;
Buffer.BlockCopy(ssss, 0, temp, 0, temp.Length);
fs.Write(temp, 0, temp.Length);
fs.Flush();
fs.Close();