首页上一页 1 下一页尾页 1 条记录 1/1页
关于remoting文件传递请教四
发表在C#图书答疑
2010-07-02
是否精华
是
否
版块置顶:
是
否
明日,谢谢您们及时回帖,我按您们的建议试验,结果将陆续反馈给您们。这几天可能多次麻烦您们,请原谅。
一。按照您们的回帖测试ok.
二。修改RemotingClass类库,将文件打开方式等修改为读写方式,上传文件ok.
三。Filel类和FilelInfo类的区别是知道了,Filel和FileStream的区别是什么?Filel对象能不能用于网络文件读写(上传,下载)?
四。为了熟悉c#文件操作自己做了以下试验,但是就传输8k字节,错误在那,多个函数中比较好坏?
private void button1_Click(object sender, EventArgs e)
{ string SF = textBox1.Text;
string TF = textBox2.Text;
using (FileStream P_sf = fc.GetFile(SF))
using (FileStream P_tf = new FileStream(TF, FileMode.Create))
{
BinaryReader m_BR = new BinaryReader(P_sf);
BinaryWriter m_BW = new BinaryWriter(P_tf);
for (long P_count = 0; P_count < P_sf.Length; P_count++) {
m_BW.Write(m_BR.ReadByte());
}
}
}
五..同步和异步操作性能有区别吧?,能否提供,异步文件传输样本?
再次感谢您和您们!
一。按照您们的回帖测试ok.
二。修改RemotingClass类库,将文件打开方式等修改为读写方式,上传文件ok.
三。Filel类和FilelInfo类的区别是知道了,Filel和FileStream的区别是什么?Filel对象能不能用于网络文件读写(上传,下载)?
四。为了熟悉c#文件操作自己做了以下试验,但是就传输8k字节,错误在那,多个函数中比较好坏?
private void button1_Click(object sender, EventArgs e)
{ string SF = textBox1.Text;
string TF = textBox2.Text;
using (FileStream P_sf = fc.GetFile(SF))
using (FileStream P_tf = new FileStream(TF, FileMode.Create))
{
BinaryReader m_BR = new BinaryReader(P_sf);
BinaryWriter m_BW = new BinaryWriter(P_tf);
for (long P_count = 0; P_count < P_sf.Length; P_count++) {
m_BW.Write(m_BR.ReadByte());
}
}
}
五..同步和异步操作性能有区别吧?,能否提供,异步文件传输样本?
再次感谢您和您们!