2

编辑:

为简洁起见,这是表的创建脚本减去键的约束。

CREATE TABLE [dbo].[ProfileFile](
[ID] [int] IDENTITY(1,1) NOT NULL,
[ProfileID] [int] NOT NULL,
[FileTypeId] [int] NOT NULL,
[Data] [image] NOT NULL

编辑:

尝试绕过 NHibernate 访问服务层中的数据

byte[] temp = (byte[])this._baseModelRepository.CurrentSession.CreateSQLQuery("SELECT Data FROM ProfileFile WHERE ProfileID = :ID").SetParameter("ID", id).UniqueResult();

编辑: 检查保存在数据库中的二进制数据后,似乎整个文件都已上传,而我的问题实际上是在显示图像方面。

图像未呈现,但我可以按照操作链接下载文件,但它在 8KB 处被截断。

NHibernate 生成的 ProfileFile 模型类数据字段

public virtual System.Byte[] Data { get; set; }

在进行此设置时,我暂时对 MIME 类型和文件名进行了硬编码。

public ActionResult GetProfilePhotoByID(int profileID)
    {
        var profileFile= //Load file object from DB by profileID
        byte[] byteArray = profileFile.Data;
        string mimeType = "image/jpg";
        string fileName = "ProfilePhoto.JPG";

        return File(byteArray, mimeType, fileName);
    }

使用调试器我发现 profileFile.Data 的大小是 8000。也许这是 NHibernate 限制?

此外,这是使用 IIS 运行的,我在 Chrome、Firefox 和 IE 中获得了相同的效果,但主要在 Chrome 中进行测试。

原始问题: 我正在尝试允许用户上传个人资料照片,然后我将在他们的个人资料页面上提供该照片。不幸的是,图像文件没有完全上传,被截断为 8 KB。下面是一些更重要的代码段的简化版本。

索引视图片段

@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { id = "profileform", enctype = "multipart/form-data" }))

<input type="file" id="photo" name="photo" />

控制器发布动作有HttpPostedFileBase photo参数

byte[] input;
            if (photo != null && photo.ContentLength > 0)
            {
                input = new byte[photo.ContentLength];
                photo.InputStream.Read(input, 0, photo.ContentLength);


                if (model.ProfileFiles == null)
                {
                    model.ProfileFiles = new List<Core.Model.ProfileFiles>();
                }

                model.ProfileFiles.Add(new Core.Model.ProfileFiles()
                {
                    ProfileID = model.ID,
                    Profile = model,
                    Data = input
                });
            }

模型类是用 NHibernate 生成的。相关领域是

// One To Many:
public virtual IList<ProfileFile> ProfileFiles { get; set; }

如果需要更多信息,请发表评论。

4

3 回答 3

1

解决了这个问题,并且仍然使用 NHibernate,使用Peter Gluck对相关问题的回答。

var persistenceModel = AutoMap.AssemblyOf<Model.BaseModel>()
    .Override<Model.ProfileFile>(map =>
    {
        // Sets max length of byte[] retrieved from image column of DB
        map.Map(x => x.Data).Length(2147483647);
    })
    ... etc.
于 2012-06-28T14:50:41.833 回答
0

尝试在您的Web.config

<system.web>
    <!--50MB-->
    <httpRuntime maxRequestLength="51200"/>
</system.web>

<system.webServer>
    <security>
        <requestFiltering>
            <!--50MB-->
            <requestLimits maxAllowedContentLength="52428795" />
        </requestFiltering>
    </security>
</system.webServer>

有关maxRequestLengthmaxAllowedContentLength查看此问题的解释。

于 2012-06-25T18:34:46.237 回答
0
@using (Html.BeginForm("Index", "Home", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
  <input id="file" type="file" name="file" />
  <input type="submit" value="Upload" class="btn" />
}

 public ActionResult ChangePhoto(HttpPostedFileBase file)
{
    if (file != null && file.ContentLength > 0)
    {

      using (System.Drawing.Image Img = System.Drawing.Image.FromStream(file.InputStream))
      {
         Img.Save(Server.MapPath("~") +"/myimage.png", Img.RawFormat);
      }
 }
于 2012-06-25T18:48:50.443 回答